删除Grid的指定Children元素

时间:2013-03-25 17:28:40

标签: c# wpf grid children

我需要在运行时删除Grid(grid1)的指定元素。这是我添加元素的代码。

 examControls.Add(excontrol);  // add the element on the ArrayList
 excontrol.Margin = new Thickness(x, y + margin, 0, 0);
 grid1.Children.Add(excontrol);   

如何在运行时删除指定的“excontrol”元素(在运行时添加)?

提前致谢

2 个答案:

答案 0 :(得分:9)

如果您保留控件记录,则可以执行以下操作:

grid1.Children.Remove(excontrol);

如果您没有包含要删除的控件的变量,则必须以某种方式识别它(标记,名称),然后在网格的子项中找到该控件,然后调用{{1} }。

答案 1 :(得分:6)

grid1.Children.Remove(excontrol) //edited per your edit -- this is exactly what ChrisF posted though

grid1.Children.RemoveAt(index)