我需要在列表框中的一行中写下它,最好的方法是什么


Listbox.Items.Add(Textbox.Text,"name:");

我写了这段代码,但它似乎没有做我想要的。

预期结果:

名称:阿

你想要这个吗?

ListBox.Items.Add("name:" + Textbox.Text);

相关内容

  • 没有找到相关文章