App.xaml 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <Application x:Class="WhiteList.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:WhiteList"
  5. StartupUri="MainWindow.xaml">
  6. <Application.Resources>
  7. <Style TargetType="TextBlock">
  8. <Setter Property="FontFamily" Value="Monotype Corsiva"/>
  9. <Setter Property="FontSize" Value="20"/>
  10. <Setter Property="Margin" Value="5"/>
  11. <Setter Property="TextWrapping" Value="Wrap"/>
  12. <Setter Property="VerticalAlignment" Value="Center"/>
  13. </Style>
  14. <Style TargetType="Button">
  15. <Setter Property="Margin" Value="10"/>
  16. <Setter Property="Background" Value="#C6D7FF"/>
  17. <Setter Property="BorderBrush" Value="#46B29D"/>
  18. <Setter Property="Width" Value="100"/>
  19. <Setter Property="Height" Value="40"/>
  20. </Style>
  21. <Style TargetType="StackPanel">
  22. <Setter Property="HorizontalAlignment" Value="Center"/>
  23. <Setter Property="VerticalAlignment" Value="Center"/>
  24. <Setter Property="Margin" Value="2"/>
  25. </Style>
  26. <Style TargetType="TextBox">
  27. <Setter Property="Width" Value="300"/>
  28. <Setter Property="Height" Value="30"/>
  29. <Setter Property="VerticalContentAlignment" Value="Center"/>
  30. <Setter Property="Background" Value="#C6D7FF"/>
  31. <Setter Property="BorderBrush" Value="#46B29D"/>
  32. <Setter Property="Margin" Value="5"/>
  33. </Style>
  34. <Style TargetType="ComboBox">
  35. <Setter Property="Width" Value="150"/>
  36. <Setter Property="Height" Value="30"/>
  37. <Setter Property="Margin" Value="5"/>
  38. </Style>
  39. <Style TargetType="ListView">
  40. <Setter Property="Background" Value="Transparent"/>
  41. <Setter Property="BorderBrush" Value="Transparent"/>
  42. <Setter Property="ScrollViewer.VerticalScrollBarVisibility" Value="Visible"/>
  43. <Setter Property="Height" Value="550"/>
  44. </Style>
  45. </Application.Resources>
  46. </Application>