0

我试图在调用 this.canvasname.childern.clear(); 之前获取存储的变量的值;. 但是当我调用 clear() 方法时,一切都消失了,我得到的变量值为“0”。调用 clear 函数后是否有任何想法来获取变量的值?

this.myGrid.Children.Clear();
4

1 回答 1

0

You can copy the controls in a list:

var controls = this.myGrid.Children.ToList();
于 2013-08-27T11:09:11.223 回答