前端转vue
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

RadioButtonDictionary.xaml 2.1KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3. <LinearGradientBrush x:Key="RadioButton_Normal_Background" StartPoint="0,0" EndPoint="0,1">
  4. <GradientBrush.GradientStops>
  5. <GradientStopCollection>
  6. <GradientStop Color="#FFF" Offset="0.0"/>
  7. <GradientStop Color="#CCC" Offset="1.0"/>
  8. </GradientStopCollection>
  9. </GradientBrush.GradientStops>
  10. </LinearGradientBrush>
  11. <SolidColorBrush x:Key="RadioButton_Normal_BorderBrush" Color="#FF333333"></SolidColorBrush>
  12. <SolidColorBrush x:Key="RadioButton_Normal_Foreground" Color="#FF000000"/>
  13. <LinearGradientBrush x:Key="RadioButton_MouseOver_Background" StartPoint="0,0" EndPoint="0,1">
  14. <GradientBrush.GradientStops>
  15. <GradientStopCollection>
  16. <GradientStop Color="#FFF" Offset="0.0"/>
  17. <GradientStop Color="#AAA" Offset="1.0"/>
  18. </GradientStopCollection>
  19. </GradientBrush.GradientStops>
  20. </LinearGradientBrush>
  21. <SolidColorBrush x:Key="RadioButton_MouseOver_BorderBrush">#FF59A5D0</SolidColorBrush>
  22. <LinearGradientBrush x:Key="RadioButton_Pressed_Background" StartPoint="0,0" EndPoint="0,1">
  23. <GradientBrush.GradientStops>
  24. <GradientStopCollection>
  25. <GradientStop Color="#BBB" Offset="0.0"/>
  26. <GradientStop Color="#EEE" Offset="0.1"/>
  27. <GradientStop Color="#EEE" Offset="0.9"/>
  28. <GradientStop Color="#FFF" Offset="1.0"/>
  29. </GradientStopCollection>
  30. </GradientBrush.GradientStops>
  31. </LinearGradientBrush>
  32. <SolidColorBrush x:Key="RadioButton_Enable_Background" Color="#FFEEEEEE"></SolidColorBrush>
  33. <SolidColorBrush x:Key="RadioButton_Enable_BorderBrush" Color="#FFAAAAAA"></SolidColorBrush>
  34. <SolidColorBrush x:Key="RadioButton_Enable_Foreground" Color="#FF888888"></SolidColorBrush>
  35. <SolidColorBrush x:Key="RadioButton_Focused_BorderBrush">#FF59A5D0</SolidColorBrush>
  36. </ResourceDictionary>