我已经为Button创建了自己的ControlTemplate,如下所示:
<Style x:Key="LightButtonStyle" TargetType="{x:Type ButtonBase}">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type ButtonBase}">
<Border
x:Name="WrappingBorder"
Margin="{TemplateBinding Margin}"
...
>
<ContentPresenter
Content="{TemplateBinding Content}"
...
>
</ContentPresenter>
</Border>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
现在,我注意到当我将边距设置为按钮时,例如:
<Button
Style="{StaticResource LightButtonStyle}"
Margin="20"
>
Hello world!
</Button>
该按钮实际上具有两倍的Margin-40。实际上,我认为控件不应该使用Margin,并且Margin属性仅在安排阶段由按钮的祖先读取。然后,我查看了WPF的默认样式,发现没有一个使用Margin。
这是正确的结论吗( margin 只能由容器正确地控制)?换句话说,每当我以自己的样式使用{TemplateBinding Margin}时,我会得到双倍的边距吗? 是否存在一些我的控件不应该使用的相似属性的列表(因为它们仅用于“周围世界”)?
您能指出我解释该问题的MSDN页面吗?谢谢!
编辑:
我想我应该在http://msdn.microsoft.com/en-us/library/ms745058.aspx和http://msdn.microsoft.com/en-us/library/ms751709.aspx中找到答案,但是我认为他们没有明确提到使用Margin属性的控件是从不,它是总是对其值进行评估并使用它的祖先或wpf系统影响布局...
最佳答案
您的结论是正确的,如果查看框架提供的默认模板,您会发现模板内的Margin
已绑定(bind)到控件的Padding
属性。