App.xaml 561 B

12345678910111213
  1. <Application x:Class="WpfApp2.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:WpfApp2"
  5. StartupUri="MainWindow.xaml">
  6. <Application.Resources>
  7. <Style TargetType="Button">
  8. <Setter Property="Height" Value="50"/>
  9. <Setter Property="Width" Value="128"/>
  10. <Setter Property="Background" Value="Pink"/>
  11. </Style>
  12. </Application.Resources>
  13. </Application>