发布网友 发布时间:2024-01-05 10:31
共3个回答
热心网友 时间:2024-12-02 05:04
①确保listbox中存储的文本名称,包括其所在完整路径热心网友 时间:2024-12-02 05:05
textbox1.text = listbox,selectItem.tostring();追问你这个只能将选择的文本添加到textbox中追答FileStream fs=new FileStream(listbox,selectItem.tostring();,FileMode.Open);
StreamReader sr = new StreamReader(fs,Encoding.Default);
string content = sr.ReadToEnd();
sr.Close();
fs.Close();
textbox1.text = content;
热心网友 时间:2024-12-02 05:05
textbox1.text += "," + listbox,selectItem.tostring();