gpt4 book ai didi

wpf - 如何在 ItemsControl 周围放置边框?

转载 作者:行者123 更新时间:2023-12-04 14:21:19 25 4
gpt4 key购买 nike

我在用户控件中有一个带有自定义面板的项目控件。用户控件大小仅受父窗口大小的约束。

<UserControl>
<Grid>
<Border BorderBrush="DarkGray" BorderThickness="5">
<ItemsControl ItemsSource="{Binding ActiveGame.Grid.CellsFlat}">
<ItemsControl.ItemsPanel>
<ItemsPanelTemplate>
<Wpf:HexagonalPanel/>
</ItemsPanelTemplate>
</ItemsControl.ItemsPanel>
<ItemsControl.ItemTemplate>
<DataTemplate>
<Button />
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>
</Border>
</Grid>
</UserControl>

我现在希望边框仅在生成的面板周围绘制。
但它是围绕整个网格绘制的,或者可能更精确地以与网格相同的大小绘制。

我想我在我的 HexagonalPanel 上正确地实现了 MeasureOverride,它返回了正确的大小,所以它不应该以那个大小绘制边框吗?

我错过了什么?

最佳答案

您尚未在 ItemsControl 上设置大小,因此它的大小也将与其父级相同。尝试设置 ItemsControlHorizontalAlignmentVerticalAlignmentCenter ;这将使 ItemsControl的实际大小与其内容匹配。

关于wpf - 如何在 ItemsControl 周围放置边框?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/976551/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com