WPF 获取元素的 ColumnSpan
在网格中设置 UIElement 的列跨度非常容易。
Grid.SetColumnSpan(extBorder, gridFormular.ColumnDefinitions.Count());
但是读取元素的 ColumnSpan 又如何呢? 如何做到这一点?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
FrameworkElement.GetValue
列范围的依赖属性标识符:同样的策略适用于检索任何依赖项的值存在的财产在元素上。
You can use
FrameworkElement.GetValue
on the dependency property identifier for the column span:This same strategy works for retrieving the value of any dependency property which exists on the element.
除了使用 Sixlettervariables 所示的 GetValue(Grid.ColumnSpanProperty) 之外,您还可以使用 Grid.GetColumnSpan()。
Besides of using GetValue(Grid.ColumnSpanProperty) as shown by sixlettervariables, you also can use Grid.GetColumnSpan().