ButtonBaseBaseStyle.xaml 962 B

123456789101112131415161718
  1. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  2. <Style
  3. x:Key="ButtonBaseBaseStyle"
  4. TargetType="ButtonBase"
  5. BasedOn="{StaticResource BaseStyle}">
  6. <Setter Property="Height" Value="{StaticResource DefaultControlHeight}" />
  7. <Setter Property="BorderBrush" Value="{DynamicResource BorderBrush}" />
  8. <Setter Property="Padding" Value="{StaticResource DefaultControlPadding}" />
  9. <Setter Property="Foreground" Value="{DynamicResource TextIconBrush}" />
  10. <Setter Property="BorderThickness" Value="0" />
  11. <Setter Property="HorizontalAlignment" Value="Center" />
  12. <Setter Property="VerticalAlignment" Value="Center" />
  13. <Setter Property="HorizontalContentAlignment" Value="Center" />
  14. <Setter Property="VerticalContentAlignment" Value="Center" />
  15. </Style>
  16. </ResourceDictionary>