你是不是写成这样了?ListBox.Items.Add(s);?把ListBox改为你的控件的ID,可能是这样的:ListBox1再试试.如果还不行,请帖上代码或加hi.
你的s字符串是不是定义在开头,改用这样的格式来定义它public const string s="";
ListBox1.Items.Add(s.ToString());
ListBox1.Items.Add("aaa");