App.xaml 511 B

123456789101112
  1. <Application x:Class="DB.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:DB"
  5. StartupUri="MainWindow.xaml">
  6. <Application.Resources>
  7. <Style x:Key="TBStyle" TargetType="TextBox">
  8. <Setter Property="Height" Value="30"/>
  9. <Setter Property="Width" Value="150"/>
  10. </Style>
  11. </Application.Resources>
  12. </Application>