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

2024-11-18 22:24:13
推荐回答(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");