-1

我可以为每个堆栈面板元素指定边距,但这将是重复的...如果发生更改,我将需要更新所有控件...

有没有办法为堆栈面板定义一次?

谢谢

4

1 回答 1

1

(对不起,我的英语不好)

Xin 的答案非常适合您的要求,但是如果您想为所有 stackPanel 设置更多属性,我建议您创建一个样式:

 <Style TargetType="StackPanel" x:Key="CustomStackPanel">
     <Setter Property="Margin" Value="10,12,15,20"/>
     <Setter Property="Height" Value="50"/>                
 </Style>

并像这样使用它:

<StackPanel>
    <StackPanel Background="Red" Style="{StaticResource CustomStackPanel}"/>
    <StackPanel Background="Green" Style="{StaticResource CustomStackPanel}"/>
    <StackPanel Background="Blue" Style="{StaticResource CustomStackPanel}"/>
</StackPanel>

如果x:Key从样式中删除 ,则包含该样式的元素内的所有StackPanel都将使用该样式。如果您在 上声明该样式,则应用程序上的所有 stackPanel 都将使用它。app.xaml

于 2012-04-28T19:31:53.530 回答