Actually the problem is that I can not add my ListBoxItem in the Grid more than one element.
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);
Here's a get an error code: Specified Visual is already a child of another Visual or the root of a CompositionTarget. If to add an empty ListBoxItem, then works fine, but it is to define and add your own ListBoxItem fails. That is something like the following:
1) This method may add only one item in the Grid
ListBoxItem obj = new ListBoxItem ();
obj = MyListBoxItem;
2) And like this here is working
ListBoxItem obj = new ListBoxItem ();
for (int i = 0; i <100 500; i + +)
MyGrid.Children.Add (obj);
Actually what's the catch, please explain where I'm wrong, for earlier thanks a lot for any help.
