App.xaml 652 B

1234567891011121314
  1. <Application x:Class="DuevaTours.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:DuevaTours"
  5. StartupUri="MainWindow.xaml">
  6. <Application.Resources>
  7. <Style TargetType="Button" >
  8. <Setter Property="Margin" Value="5"></Setter>
  9. <Setter Property="Width" Value="175"></Setter>
  10. <Setter Property="Height" Value="30"></Setter>
  11. <Setter Property="Background" Value="Yellow"></Setter>
  12. </Style>
  13. </Application.Resources>
  14. </Application>