我希望通过悬停在每个组合框上来显示每个项目的图片。我很难做到这一点。到目前为止我写了以下内容。请告诉我我做错了什么。谢谢。
private void mouseHoverIndex(object sender, EventArgs e)
{
if (comboBox1.SelectedIndex == 1)
{
Coke.Visible = true;
}
if (comboBox1.SelectedIndex == 2)
{
Coke.Visible = false;
Sprite.Visible = true;
}
}
饮料名称是图片框。