我ItemsPanelTemplate
在其他控件(例如 )上使用过ListBox
,所以我认为对 做同样的事情TabControl
会很简单。
显然,我遗漏了一些东西,并且TabControl
完全忽略了我在ItemsPanelTemplate
.
我有看起来有点像这样的 xaml:
<TabControl TabStripPlacement="Right" ItemsSource="{Binding Components}">
<TabControl.ItemsPanel>
<ItemsPanelTemplate>
<WrapPanel />
</ItemsPanelTemplate>
</TabControl.ItemsPanel>
</TabControl>
我尝试替换WrapPanel
为UniformGrid
以查看是否存在差异并且其行为相同。我确实有一个ControlTemplate
for TabItem
,但我尝试删除它并没有任何区别,所以我认为这不会影响我的问题。