XAML - 标签和文本框的样式

时间:2018-03-16 09:02:08

标签: .net wpf xaml

我想知道是否可以同时为标签和文本框创建样式。它避免了我复制每一种风格。

<Label Style="{StaticResource Style1}" Text="Label" />
<TextBox Style="{StaticResource Style1}" />

我怎样才能拥有两种风格?

<Style x:Key="Style1" TargetType="{x:Type ???????}">
    <Setter Property="Margin" Value="0,0,20,0" />
</Style>

谢谢:)

1 个答案:

答案 0 :(得分:1)

在样式元素中,将目标类型设置为

TargetType="{x:Type Control}"

或只是

TargetType="Control"