【C# WPF】自定义按钮模板以及设置触发器

WPF入门:

模板思想,自定义一个模板类来实现重定义按钮。

xml 复制代码
<Grid>
    <Button Width="300" Height="100" Content="自定义按钮" Background="Pink" FontSize="50" Foreground="White">
        <Button.Template>
            <ControlTemplate TargetType="{x:Type Button}">
                <Border x:Name="border" Background="{TemplateBinding Background}" BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="{TemplateBinding BorderThickness}" CornerRadius="10">
                    <TextBlock x:Name="txtConent" Text="{TemplateBinding Content}" HorizontalAlignment="Center" VerticalAlignment="Center"/>
                </Border>
                <ControlTemplate.Triggers>
                    <Trigger Property="IsMouseOver" Value="True">
                        <Setter TargetName="border" Property="Background" Value="black"/>
                        <Setter TargetName="txtConent" Property="FontSize" Value="20"/>
                    </Trigger>
                    <Trigger Property="IsPressed" Value="True">
                        <Setter TargetName="border" Property="Background" Value="White"/>
                    </Trigger>
                </ControlTemplate.Triggers>
            </ControlTemplate>
        </Button.Template>
    </Button>
</Grid>

1.解析:

按钮的大小、内容、前背景、字体大小的实现:

xml 复制代码
<Button Width="300" Height="100" Content="自定义按钮" Background="Pink" FontSize="50" Foreground="White">

定义一个按钮模板,在其中填写内容:

xml 复制代码
<Button.Template>
    <ControlTemplate TargetType="{x:Type Button}">
    ....
    </ControlTemplate>
</Button.Template>

按钮的外观,border是边框的意思,TemplateBinding是绑定的意思,不会直接将值给写死,在实现的时候传参调用。在border内部加入一个文本框。

xml 复制代码
<Border x:Name="border" Background="{TemplateBinding Background}" BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="{TemplateBinding BorderThickness}" CornerRadius="10">
    <TextBlock x:Name="txtConent" Text="{TemplateBinding Content}" HorizontalAlignment="Center" VerticalAlignment="Center"/>
</Border>

设置两个触发器,在指针移入的时候会变色+字体变化,点击的时候会变色。

xml 复制代码
<ControlTemplate.Triggers>
    <Trigger Property="IsMouseOver" Value="True">
        <Setter TargetName="border" Property="Background" Value="black"/>
        <Setter TargetName="txtConent" Property="FontSize" Value="20"/>
    </Trigger>
    <Trigger Property="IsPressed" Value="True">
        <Setter TargetName="border" Property="Background" Value="White"/>
    </Trigger>
</ControlTemplate.Triggers>

效果:

相关推荐
我不会编程5551 小时前
Python Cookbook-5.1 对字典排序
开发语言·数据结构·python
李少兄1 小时前
Unirest:优雅的Java HTTP客户端库
java·开发语言·http
“抚琴”的人1 小时前
【机械视觉】C#+VisionPro联合编程———【六、visionPro连接工业相机设备】
c#·工业相机·visionpro·机械视觉
无名之逆1 小时前
Rust 开发提效神器:lombok-macros 宏库
服务器·开发语言·前端·数据库·后端·python·rust
似水এ᭄往昔1 小时前
【C语言】文件操作
c语言·开发语言
啊喜拔牙2 小时前
1. hadoop 集群的常用命令
java·大数据·开发语言·python·scala
xixixin_2 小时前
为什么 js 对象中引用本地图片需要写 require 或 import
开发语言·前端·javascript
W_chuanqi2 小时前
安装 Microsoft Visual C++ Build Tools
开发语言·c++·microsoft
anlogic2 小时前
Java基础 4.3
java·开发语言
A旧城以西3 小时前
数据结构(JAVA)单向,双向链表
java·开发语言·数据结构·学习·链表·intellij-idea·idea