WPF Grid如何在RowDefinitions上签名改变?

时间:2013-03-16 21:22:23

标签: wpf grid wpf-controls

是否可以在RowCollection上捕获事件?

new Grid().RowDefinitions.Changed+=???

1 个答案:

答案 0 :(得分:2)

也许这不是执行此操作的最佳方式,但我使用此解决方案:

private count=0;
void OnLayoutUpdated(...)
{
  if(count!=Grid().RowDefinitions.Count)
  {
     // Do what you need.
  }
}

如果我们需要知道值已更改,我们也可以在值上更改每个RowDefinition。