ButtonGroup.xaml 785 B

1234567891011121314151617
  1. <ResourceDictionary
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:hc="clr-namespace:HandyControl.Controls">
  5. <Style TargetType="hc:ButtonGroup" BasedOn="{StaticResource ButtonGroupBaseStyle}" />
  6. <Style
  7. x:Key="ButtonGroupSolid"
  8. TargetType="hc:ButtonGroup"
  9. BasedOn="{StaticResource ButtonGroupBaseStyle}">
  10. <Setter Property="hc:VisualElement.HighlightBorderBrush" Value="{DynamicResource TitleBrush}" />
  11. <Setter Property="hc:VisualElement.HighlightBackground" Value="{DynamicResource TitleBrush}" />
  12. <Setter Property="hc:VisualElement.HighlightForeground" Value="{DynamicResource TextIconBrush}" />
  13. </Style>
  14. </ResourceDictionary>