c#中如何将listbox中的内容添加到textbox中

2024-11-26 02:06:43
推荐回答(3个)
回答1:

①确保listbox中存储的文本名称,包括其所在完整路径
②在listbox的SelectedIndexChanged事件中,添加代码:
string[] contents=System.IO.File.ReadAllLines(@listbox.selectedItem);
foreach(string temp in contents)
{
textbox.appendText(temp);
}

回答2:

textbox1.text = listbox,selectItem.tostring();

回答3:

textbox1.text += "," + listbox,selectItem.tostring();
textbox1.text = textbox1.text.SubString(1);