【发布时间】:2012-06-01 21:42:59
【问题描述】:
有谁知道为什么 TabControl 的 padding 属性不能用经典主题渲染,但适用于 luna 主题?
XAML 非常基础。我已将左侧填充设置为 50,以便问题在屏幕截图中很明显。
<!-- Tab control styling -->
<Style TargetType="{x:Type TabControl}">
<Setter Property="BorderBrush" Value="Black" />
<Setter Property="BorderThickness" Value="1,1,1,1" />
<Setter Property="Padding" Value="50,5,10,5" />
<Setter Property="Margin" Value="3.5" />
<Setter Property="Background" Value="{DynamicResource {x:Static SystemColors.ControlLightBrushKey}}" />
</Style>
我是否缺少一些关于经典主题的内容,例如所有的填充都被忽略了?
【问题讨论】:
标签: .net wpf xaml themes padding