作用:列表框,用于以列表的形式展示数据。
常用属性:
允许多列显示数据
添加数据项集合
常用事件:
选择项变化时触发该事件
后台代码示范:
//列表框项目选择变化时被触发
private void listBox1_SelectedIndexChanged(object sender, EventArgs e)
{
MessageBox.Show("选择项编号为:"+(listBox1.SelectedIndex+1).ToString());
MessageBox.Show("选择的内容为:"+listBox1.SelectedItem.ToString());
//向列表框中添加内容
listBox1.Items.Add("添加的项目");
//获取列表的一些信息
listBox1.SelectionMode=SelectionMode.MultiSimple; //允许多选
listBox1.SelectedIndex = 0; //默认选中第一个
}