实际上问题是我不能在网格中添加我的 ListBoxItem 多个元素。
ListBoxItem _ListBoxItem = null;
_ListBoxItem = LoginThread as ListBoxItem;
LoginThread.Name = "LoginThread1";
OkChild.Children.Insert(0, _ListBoxItem);
_ListBoxItem = LoginThread as ListBoxItem;
LoginThread.Name = "LoginThread2";
OkChild.Children.Insert(1, _ListBoxItem);
这是一个获取错误代码:指定的视觉对象已经是另一个视觉对象的子对象或 CompositionTarget 的根。如果要添加一个空的ListBoxItem,那么工作正常,但它是定义和添加自己的ListBoxItem 失败。这类似于以下内容:
1) 该方法只能在 Grid 中添加一项
ListBoxItem obj = new ListBoxItem ();
obj = MyListBoxItem;
2)像这样在这里工作
ListBoxItem obj = new ListBoxItem ();
for (int i = 0; i <100 500; i + +)
MyGrid.Children.Add (obj);
实际上有什么问题,请解释我错在哪里,因为之前非常感谢您的帮助。