WPF 获取元素的 ColumnSpan

发布于 2024-12-16 21:00:57 字数 189 浏览 1 评论 0 原文

在网格中设置 UIElement 的列跨度非常容易。

Grid.SetColumnSpan(extBorder, gridFormular.ColumnDefinitions.Count());

但是读取元素的 ColumnSpan 又如何呢? 如何做到这一点?

It's really easy to set column span for an UIElement in a grid.

Grid.SetColumnSpan(extBorder, gridFormular.ColumnDefinitions.Count());

but what's about reading an element's ColumnSpan? How to do that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

旧时模样 2024-12-23 21:00:57

您可以使用 FrameworkElement.GetValue 列范围的依赖属性标识符

var columnSpan = (int)extBorder.GetValue(Grid.ColumnSpanProperty);

同样的策略适用于检索任何依赖项的值存在的财产在元素上。

You can use FrameworkElement.GetValue on the dependency property identifier for the column span:

var columnSpan = (int)extBorder.GetValue(Grid.ColumnSpanProperty);

This same strategy works for retrieving the value of any dependency property which exists on the element.

呢古 2024-12-23 21:00:57

除了使用 Sixlettervariables 所示的 GetValue(Grid.ColumnSpanProperty) 之外,您还可以使用 Grid.GetColumnSpan()

Besides of using GetValue(Grid.ColumnSpanProperty) as shown by sixlettervariables, you also can use Grid.GetColumnSpan().

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