本文介绍了C#如果listbox.selecteditems.contains值则的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试使我的comboBox在列表框中选择某个项目后即可显示.
我有以下代码:

Hi I''m trying to get my comboBox to become visible once a certain item is selected in my listbox.
I have this code:

If(listBox.SelectedItems.Contains("Tea"))
{
    ComboBox.Visible = true;
}



这不起作用...还有其他想法吗?



This isn''t working... Any other ideas?

推荐答案

private void listBox1_Click(object sender, EventArgs e)
{
 if (listBox1.SelectedItems.Contains("Tea"))
   comboBox1.Visible = true;
}



谢谢!!!



Thanks!!!



这篇关于C#如果listbox.selecteditems.contains值则的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-14 20:11