WPF—ControlTemplate

作者:追风剑情 发布于:2019-8-27 14:19 分类:C#

示例

  1. <Window
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:local="clr-namespace:WpfTest"
  7. xmlns:Properties="clr-namespace:WpfTest.Properties"
  8. xmlns:wpf="http://schemas.microsoft.com/netfx/2007/xaml/presentation" x:Class="WpfTest.MainWindow"
  9. mc:Ignorable="d"
  10. Title="MainWindow" Height="250" Width="200">
  11. <!--资源通常定义在根节点,或者资源字典中-->
  12. <Window.Resources>
  13. <!--定义一个渐变按钮模板-->
  14. <!--如果不定义x:Key,表示对所有Button应用此样式-->
  15. <Style TargetType="Button">
  16. <Setter Property="Template">
  17. <Setter.Value>
  18. <ControlTemplate TargetType="Button">
  19. <Border Name="RootElement">
  20. <VisualStateManager.VisualStateGroups>
  21. <!--Define the states and transitions for the common states.
  22. The states in the VisualStateGroup are mutually exclusive to
  23. each other.-->
  24. <VisualStateGroup x:Name="CommonStates">
  25. <VisualStateGroup.Transitions>
  26. <!--设置按钮各状态之间的转换时间-->
  27. <VisualTransition From="Normal" To="MouseOver" GeneratedDuration="0:0:0.1"/>
  28. <VisualTransition From="MouseOver" To="Pressed" GeneratedDuration="0:0:0.1" />
  29. <VisualTransition From="Pressed" To="MouseOver" GeneratedDuration="0:0:0.1" />
  30. <!--定义MouseOver To Normal状态时的颜色渐变动画-->
  31. <VisualTransition From="MouseOver" To="Normal" GeneratedDuration="0:0:1.5">
  32. <Storyboard>
  33. <ColorAnimationUsingKeyFrames
  34. Storyboard.TargetProperty="Color"
  35. Storyboard.TargetName="BorderBrush"
  36. FillBehavior="HoldEnd" >
  37. <!--通过动画关键帧可定义多个颜色渐变-->
  38. <ColorAnimationUsingKeyFrames.KeyFrames>
  39. <LinearColorKeyFrame Value="Blue" KeyTime="0:0:0.5" />
  40. <LinearColorKeyFrame Value="Yellow" KeyTime="0:0:1" />
  41. <LinearColorKeyFrame Value="Black" KeyTime="0:0:1.5" />
  42. </ColorAnimationUsingKeyFrames.KeyFrames>
  43. </ColorAnimationUsingKeyFrames>
  44. </Storyboard>
  45. </VisualTransition>
  46. </VisualStateGroup.Transitions>
  47. <!--The Normal state is the state the button is in
  48. when it is not in another state from this VisualStateGroup.-->
  49. <VisualState x:Name="Normal" />
  50. <!--Change the SolidColorBrush, BorderBrush, to red when the
  51. mouse is over the button.-->
  52. <VisualState x:Name="MouseOver">
  53. <Storyboard>
  54. <ColorAnimation Storyboard.TargetName="BorderBrush"
  55. Storyboard.TargetProperty="Color"
  56. To="Red" Duration="0:0:0.5"/>
  57. </Storyboard>
  58. </VisualState>
  59. <!--Change the SolidColorBrush, BorderBrush, to Transparent when the
  60. button is pressed.-->
  61. <VisualState x:Name="Pressed">
  62. <Storyboard>
  63. <ColorAnimation Storyboard.TargetName="BorderBrush"
  64. Storyboard.TargetProperty="Color"
  65. To="Transparent" Duration="0:0:0.5"/>
  66. </Storyboard>
  67. </VisualState>
  68. <!--The Disabled state is omitted for brevity.-->
  69. </VisualStateGroup>
  70. </VisualStateManager.VisualStateGroups>
  71.  
  72. <Border.Background>
  73. <SolidColorBrush x:Name="BorderBrush" Color="Black"/>
  74. </Border.Background>
  75.  
  76. <Grid Background="{TemplateBinding Background}" Margin="4">
  77. <ContentPresenter
  78. HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}"
  79. VerticalAlignment="{TemplateBinding VerticalContentAlignment}"
  80. Margin="4,5,4,4" />
  81. </Grid>
  82. </Border>
  83. </ControlTemplate>
  84. </Setter.Value>
  85. </Setter>
  86. </Style>
  87. </Window.Resources>
  88. <Grid>
  89. <Button Name="submitName" Width="100" Height="40" Background="Green">View message</Button>
  90. </Grid>
  91. </Window>

运行测试

2222.gif

标签: C#

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号