C#Listbox设置所选项目

时间:2010-12-15 18:20:59

标签: c# winforms listbox listboxitem selected

我有一个带有值

的C#列表框
Profile 1
Profile 2
Profile 3

我希望在加载表单时选择配置文件2 。我该怎么做?

3 个答案:

答案 0 :(得分:19)

ListBox.SelectedIndex事件中设置Form.Shown属性 例如:

public Form1()
{
    InitializeComponent();

    // Adding the event handler in the constructor
    this.Shown += new EventHandler(Form1_Shown);
}    

private void Form1_Shown(object sender, EventArgs e)
{
    myListBox.SelectedIndex = 1;
}

答案 1 :(得分:6)

将以下代码放入Form.Loaded事件:

listBox1.SelectedItem = "Profile 2";

答案 2 :(得分:0)

listBox1.Items.Add(“Profile 1”);

listBox1.Items.Add(“个人资料2”);

listBox1.Items.Add(“个人资料3”);

listBox1.SelectedIndex = 1;