﻿<Application x:Class="Application"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    StartupUri="Window2.xaml">
    <Application.Resources>
      
    <!--  XML Data Source  -->
    <XmlDataProvider x:Key="ProductList" Source="Products.xml" />


    <!-- Style used for Column Headers  -->
    <Style x:Key="ColHeaderText" TargetType="TextBlock">
      <Setter Property="Width" Value="110" />
      <Setter Property="Height" Value="29" />
      <Setter Property="FontSize" Value="14" />
      <Setter Property="FontWeight" Value="Bold" />
      <Setter Property="Background" Value="Yellow" />
      <Setter Property="Foreground" Value="Navy" />
    </Style>


  </Application.Resources>
</Application>
