将列表框项目传递到文本框

将列表框项目传递到文本框

本文介绍了将列表框项目传递到文本框的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试将所有列表框项目(在这种情况下为数字1和2)传递到文本框,并且我有此代码

I am trying to pass all listbox items (numbers 1 and 2 in this case) to textbox and I have this code

for (int i = 0; i < listpatternID.Items.Count; i++)
{
if ((i + 1) < listpatternID.Items.Count)
patternID1.Text += listpatternID.Items[i] + ", ";
else
patternID1.Text += listpatternID.Items[i];
}



但在文本框中,我看到了System.Data.DataRowView,System.Data.DataRowView

我看不到1和2

我在哪里错了???我知道我在哪里错了:)



but in textbox I see System.Data.DataRowView, System.Data.DataRowView

I dont see 1 and 2

where am I wrong????I know I am wrong somewhere :)

推荐答案


for (int i = 0; i < listpatternID.Items.Count; i++)
{
    if ((i + 1) < listpatternID.Items.Count)
        patternID1.Text += listpatternID.Items[i].Text + ", ";
    else
        patternID1.Text += listpatternID.Items[i].Text;
}


foreach (DataRowView item in listpatternID.Items)
        {
            textBox1.Text += item[0].ToString()  + "  , " ;
        }


最好的问候
米特瓦里(M.Mitwalli)


Best Regards
M.Mitwalli


这篇关于将列表框项目传递到文本框的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-05 23:25