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

C#中ListBox怎么设置默认选项是第二项
C#中ListBox怎么设置默认选项是第二项
我要的是一运行效果时,看见它显示的是第二项……

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