如果组合框的索引等于<list>的索引?

时间:2015-06-25 13:13:44

标签: c# winforms

有些信息:在我的组合框中有我的list<Create>的详细信息,当人们点击我的组合框中的一行时,它应该能够编辑所选行中的内容(可编辑)事物将在文本框中解析)。

问题:是否可以获取comboxbox的索引并检查该索引是否与我List<Create> Characters的索引匹配,以便我可以返回特定的项目行?

    private void cbSummary_SelectedIndexChanged(object sender, EventArgs e)
    {
        foreach (Create character in Characters)
        {
            if(cbSummary.SelectedIndex == ?? )
        }
    }

想到的是建立这个,但我还不太确定。 有什么想法吗?

1 个答案:

答案 0 :(得分:2)

是的,您可以使用索引器:

var createList = new List<Create>();
// Populate list

var selectedListItem = createList[cbSummary.SelectedIndex];