vue-java-tutorials/CSharp/WPFTutorial/WPF-6-Style/MainWindow.xaml

43 lines
2.1 KiB
XML

<Window x:Class="WPF_6_Style.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
Title="MainWindow" Height="450" Width="800">
<Window.Resources>
<Style x:Key="BaseButton" TargetType="Button">
<Setter Property="FontSize" Value="18" />
<Setter Property="Foreground" Value="IndianRed" />
<Setter Property="Background" Value="White" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="Button">
<Border x:Name="Border" Background="{TemplateBinding Background}"
BorderBrush="{TemplateBinding BorderBrush}"
BorderThickness="{TemplateBinding BorderThickness}">
<ContentPresenter
x:Name="ContentPresenter"
Margin="{TemplateBinding Padding}"
HorizontalAlignment="{TemplateBinding HorizontalAlignment}"
VerticalAlignment="{TemplateBinding VerticalContentAlignment}"
Focusable="False" RecognizesAccessKey="True" />
</Border>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
<Style x:Key="ButtonStyle" TargetType="Button" BasedOn="{StaticResource BaseButton}">
<Setter Property="Content" Value="内容" />
</Style>
</Window.Resources>
<Grid>
<StackPanel>
<Button Style="{StaticResource ButtonStyle}">1</Button>
<Button Style="{StaticResource ButtonStyle}">2</Button>
<Button Style="{StaticResource ButtonStyle}">3</Button>
<Button Style="{StaticResource ButtonStyle}" />
</StackPanel>
</Grid>
</Window>