网格上的 Xaml 触发器

发布于 2024-10-18 23:51:08 字数 327 浏览 0 评论 0原文

这是我的情况:我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

烟雨扶苏 2024-10-25 23:51:08

如果您想要的只是大小相同的单元格,为什么不使用 UniformGrid 而不是 Grid

UniformGrid 上设置 Rows = "1" ,每次添加/删除子项时,它都会为所有子项分配相同的大小。

If all you want is equally sized cells, why not use UniformGrid instead of a Grid?

Set Rows = "1" on UniformGrid and every time you add/remove a child, it will allocate same size for all of them.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文