App.xaml 694 B

1234567891011121314151617
  1. <Application x:Class="modulekz.App"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:local="clr-namespace:modulekz"
  5. StartupUri="MainWindow.xaml">
  6. <Application.Resources>
  7. <Style TargetType="Button" >
  8. <Setter Property="Background" Value="#4ee9a2"/>
  9. </Style>
  10. <Style TargetType="TextBlock">
  11. <Setter Property ="FontFamily" Value="Calibri"/>
  12. </Style>
  13. <Style TargetType="ListBox">
  14. <Setter Property="Background" Value="#39f9"/>
  15. </Style>
  16. </Application.Resources>
  17. </Application>