网格上的 Xaml 触发器
这是我的情况:我有一个 TabControl,并且我已将其模板替换为我自己的模板,以便 TabItems 的标题显示在 Grid 内,从而在可用空间中均匀分布。我在 TabItem 样式中放置了一个 setter,其值绑定到祖先网格(前面提到的那个)。我正在使用转换器将 Grid.Row 分配给 Grid.Children.IndexOf(TabItem) 并在此过程中向该网格添加 RowDefinition。
(动态)添加 TabItems 时效果很好,但是当我删除 TabItem 时,它不会刷新值。所以我想我需要放置一个触发器,以便每次 Grid.Children 更改时都会重新计算值。我不确定如何实现这一点。
This is my situation: I have a TabControl and I have replaced its template with my own so that headers of TabItems are displayed inside a Grid thus spreading equally through available space. I put a setter inside a TabItem style whose value is bound to the ancestral Grid (the one mentioned before). I'm using a converter to assign Grid.Row to Grid.Children.IndexOf(TabItem) and in the process adding a RowDefinition to this Grid.
This works fine while adding TabItems (dynamically) but when I remove a TabItem, it doesn't refresh the values. So I figure I need to place a trigger so that every time Grid.Children is changed values get recalculated. I am unsure how to accomplish this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您想要的只是大小相同的单元格,为什么不使用
UniformGrid
而不是Grid
?在
UniformGrid
上设置Rows = "1"
,每次添加/删除子项时,它都会为所有子项分配相同的大小。If all you want is equally sized cells, why not use
UniformGrid
instead of aGrid
?Set
Rows = "1"
onUniformGrid
and every time you add/remove a child, it will allocate same size for all of them.