ajouter un ListBoxItem dans un ListBox en C #?

Je sais que:

String test = "test";
ListBox.Items.Add(test);

ou

String test = "test";
int index = 1;
ListBox.Items.Insert(index, String);

ajoute à la Chaîne dans une ListBox, mais je veux insérer ListBoxItem, comment?
auparavant, j'apprends que

var contentToString = (String)ListBoxItem.Content;

simplement convertit ListBoxItem à la Chaîne, mais je ne pouvais pas faire le contraire de convertir la Chaîne de ListBoxItem

source d'informationauteur Hendra Anggrian