我想知道是否可以同时为标签和文本框创建样式。它避免了我复制每一种风格。
<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>
谢谢:)
答案 0 :(得分:1)
在样式元素中,将目标类型设置为
TargetType="{x:Type Control}"
或只是
TargetType="Control"