WPF获取元素的ColumnSpan

时间:2011-11-18 09:03:31

标签: wpf grid columnspan

在网格中设置UIElement的列跨度非常简单。

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

但是阅读元素的ColumnSpan是什么意思? 怎么做?

2 个答案:

答案 0 :(得分:6)

您可以在FrameworkElement.GetValue上使用dependency property identifier for the column span

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

此策略适用于检索元素上存在的任何依赖项属性的值。

答案 1 :(得分:4)

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