我TabControl
在 WPF 中使用该类,我注意到每个内容的TabItem
所有边都有 4 个像素的默认边距。
示例代码:
<Window x:Class="TabControlPadding.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Window1" Height="300" Width="300">
<Grid>
<TabControl Margin="10">
<TabItem Header="Tab 1">
<Grid Background="Pink"/>
</TabItem>
<TabItem Header="Tab 2">
<Grid Background="LightBlue"/>
</TabItem>
</TabControl>
</Grid>
</Window>
截屏:
我想摆脱这个边距(将它减少到零),但我不希望完全替换模板或类似的重物。
有没有一种简单的方法可以非常有针对性地做到这一点?