我在WPF中使用TabControl类,我注意到每个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>
截图:
我想摆脱这个边距(将其减小到零),但是我宁可不必完全替换模板或者像这样的东西。
有一个简单的方法我可以以有针对性的方式做到这一点吗?
解决方法
只需在TabControl中将Padding设置为零:
<TabControl Margin="10" Padding="0">
TabControl的默认样式将填充设置为4,并将内容主机上的边距绑定到TabControl上的填充。