TextBox.xaml 1011 B

1234567891011121314151617
  1. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  2. <ResourceDictionary.MergedDictionaries>
  3. <ResourceDictionary Source="Colors.xaml" />
  4. <ResourceDictionary Source="Fonts.xaml" />
  5. </ResourceDictionary.MergedDictionaries>
  6. <Style x:Key="DefaultTextBox" TargetType="{x:Type TextBox}">
  7. <Setter Property="FontSize" Value="{DynamicResource DefaultFontSize}" />
  8. <Setter Property="Foreground" Value="{DynamicResource FormControlBackground}" />
  9. <Setter Property="CaretBrush" Value="{DynamicResource FormControlBackground}" />
  10. <Setter Property="Background" Value="Transparent" />
  11. <Setter Property="BorderBrush" Value="{DynamicResource FormControlBackground}" />
  12. <Setter Property="BorderThickness" Value="0,0,0,1" />
  13. <Setter Property="Padding" Value="0,5,0,5" />
  14. <Setter Property="Height" Value="35" />
  15. </Style>
  16. </ResourceDictionary>