当前位置: 代码迷 >> Delphi >> C#中ListBox如何设置默认选项是第二项
  详细解决方案

C#中ListBox如何设置默认选项是第二项

热度:4196   发布时间:2013-02-25 00:00:00.0
C#中ListBox怎么设置默认选项是第二项
C#中ListBox怎么设置默认选项是第二项
我要的是一运行效果时,看见它显示的是第二项……

------解决方案--------------------------------------------------------
那就在窗体构造函数中添加一行代码:
public Form1()
{
InitializeComponent();
listBox1.SelectedIndex = 1;//这是新加的代码,listBox1是你listBox的id
}