在 .NET WPF 中,我有以下 XAML 代码:
<StackPanel>
<StackPanel.Resources>
<Style TargetType="FrameworkElement">
<Setter Property="Margin" Value="5" />
</Style>
</StackPanel.Resources>
<CheckBox>Check 1</CheckBox>
<TextBox>Some text...</TextBox>
</StackPanel>
控件没有应用任何边距。
是否可以在不使用键在每个控件上显式设置样式的情况下将样式应用于多个控件(不同类型的) ?