WPF—模板Template

作者:追风剑情 发布于:2019-8-27 12:16 分类: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 x:Name="Border" CornerRadius="20" BorderThickness="1" BorderBrush="Black">
  20. <Border.Background>
  21. <LinearGradientBrush StartPoint="0,0.5" EndPoint="1,0.5">
  22. <GradientStop Color="{Binding Background.Color,
  23. RelativeSource={RelativeSource TemplatedParent}}"
  24. Offset="0.0" />
  25. <GradientStop Color="White" Offset="0.9" />
  26. </LinearGradientBrush>
  27. </Border.Background>
  28. <ContentPresenter Margin="2" HorizontalAlignment="Center" VerticalAlignment="Center" RecognizesAccessKey="True"/>
  29. </Border>
  30. <ControlTemplate.Triggers>
  31. <!--Change the appearance of the button when the user clicks it.-->
  32. <Trigger Property="IsPressed" Value="true">
  33. <Setter TargetName="Border" Property="Background">
  34. <Setter.Value>
  35. <LinearGradientBrush StartPoint="0,0.5" EndPoint="1,0.5">
  36. <GradientStop Color="{Binding Background.Color,
  37. RelativeSource={RelativeSource TemplatedParent}}"
  38. Offset="0.0" />
  39. <GradientStop Color="DarkSlateGray" Offset="0.9" />
  40. </LinearGradientBrush>
  41. </Setter.Value>
  42. </Setter>
  43. </Trigger>
  44. </ControlTemplate.Triggers>
  45. </ControlTemplate>
  46. </Setter.Value>
  47. </Setter>
  48. </Style>
  49. </Window.Resources>
  50. <Grid>
  51. <Button Name="submitName" Width="100" Height="40" Background="Green">View message</Button>
  52. </Grid>
  53. </Window>

效果截图

1111.png

标签: C#

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号