C#:ListBox的2个常用方法Add,Clear与Items的2个属性

发表于:2007-06-30来源:作者:点击数: 标签:
listBox1.Items.Clear() 清除listBox中的item;
listBox1.Items.Count 获取listBox的item数目;
listBox1.Items[n] 获取listBox中的第n个item;
listBox1.Items.Add("123") 向listBox中添加一个item;

原文转自:http://www.ltesting.net