C# wpf 绘制出一个按钮的样式 其他按钮使用
时间: 2024-11-03 10:19:54 浏览: 8
c# wpf如何使用Blend工具绘制Control样式.docx
4星 · 用户满意度95%
在WPF中,如果你想要自定义按钮的样式并让其他按钮也应用这个样式,你可以创建一个名为`ButtonStyle`的`Style`对象,并将其设置为`ApplicationResourceDictionary`的一部分。这里是一个简单的例子:
```xml
<!-- 在App.xaml文件中 -->
<Window x:Class="YourNamespace.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Application.Resources>
<!-- 创建一个新的ButtonStyle -->
<Style TargetType="Button" x:Key="CustomButtonStyle">
<Setter Property="Background" Value="LightBlue" />
<Setter Property="Foreground" Value="White" />
<Setter Property="BorderBrush" Value="DarkGray" />
<Setter Property=" BorderThickness" Value="2" />
<Setter Property="FontFamily" Value="Arial" />
<Setter Property="Padding" Value="8,4"/>
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="Button">
<Border CornerRadius="5" Background="{TemplateBinding Background}">
<ContentPresenter HorizontalAlignment="Center" VerticalAlignment="Center" />
</Border>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</Application.Resources>
</Window>
```
然后在需要的地方,只需将`x:Name`属性设为你喜欢的名字,如`MyCustomButton`,就可以应用这个样式了:
```xml
<Button Content="Click Me" Style="{StaticResource CustomButtonStyle}" x:Name="MyCustomButton" />
```
阅读全文