Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我不知道我在这里做错了什么。在下面的 XAML 中,边框没有填充 tabItem 上的可用空间(只是很多空白)。如何填充整个标签页?
<TabControl> <TabItem Header="Plant State"> <Border Background="Red" VerticalAlignment="Stretch" HorizontalAlignment="Stretch"></Border> </TabItem> </TabControl>
我在马特汉密尔顿的帮助下解决了这个问题。如果您使用常规 TabControl(默认模板),这实际上可以正常工作。
我正在使用更改默认控件模板的 xaml“主题”。这导致布局失败,所以我将不得不调查并找出问题所在。