我知道:
String test = "test";
ListBox.Items.Add(test);
或者
String test = "test";
int index = 1;
ListBox.Items.Insert(index, String);
在ListBox中添加String,但我想插入ListBoxItem,怎么做?以前我知道
var contentToString = (String)ListBoxItem.Content;
只是将 ListBoxItem 转换为 String,但我无法将 String 转换为 ListBoxItem