111,125
社区成员
发帖
与我相关
我的任务
分享
foreach (string itemValue in listBox1.Items)
{
textBox1.AppendText(itemValue);
}
string par=String.Empty;
foreach(ListItem ItemValue in Listbox1.Items)
{
par=ItemValue.Value;
}
Textbox2.Text=par;