提问者:小点点

组合框特定项C#


我的组合框中有许多项,其中一个是名为“Alert”的项。我希望代码知道,当选定的项为“Alert”时,它将启动一个我使用C#和visual studio 2019 winform处理的事件


共1个答案

匿名用户

将SelectedIndexChanged事件添加到组合框中。 您可以获得如下的详细信息。

private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
{
    ComboBox comboBox = (ComboBox)sender;
    int selectedIndex = comboBox.SelectedIndex;
    int selectedValue = (int)comboBox.SelectedValue;
    string selectedItem = (string) comboBox.SelectedItem;
}