C#中如何向控件listbox中添加值为字符串

2024年11月18日 22:24
有4个网友回答
网友(1):

你是不是写成这样了?
ListBox.Items.Add(s);?
把ListBox改为你的控件的ID,可能是这样的:ListBox1
再试试.
如果还不行,请帖上代码或加hi.

网友(2):

你的s字符串是不是定义在开头,改用这样的格式来定义它
public const string s="";

网友(3):

ListBox1.Items.Add(s.ToString());

网友(4):

ListBox1.Items.Add("aaa");