我正在将孩子循环添加到主网格。但是我该如何删除它们?我只想删除每次调用函数时添加的子项,然后添加新的子项。
void flcl_Selection(object sender, MyEventArgs e)
{
//remove children here
for (int i = 0; i < e.MyFirstString.Count; i ++)
{
LabelCountry lbl = new LabelCountry((string)e.MyFirstString[i]);
MainGrid.Children.Add(lbl);
}
}