c# listbox 常用的一些属性

listBox1.Items.Clear()          清除listBox中的item;
listBox1.Items.Count           获取listBox的item数目;
listBox1.Items[n]                  获取listBox中的第n个item;
listBox1.Items.Add("123")   向listBox中添加一个item;

posted on 2009-08-31 22:59  9号  阅读(399)  评论(0编辑  收藏  举报

导航