メイングリッドにループで子を追加しています。しかし、どうすればそれらを削除できますか? 関数が呼び出されるたびに追加した子のみを削除してから、新しい子を追加したいと考えています。
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);
}
}