gpt4 book ai didi

c# - 在 C# 中隐藏下拉列表

转载 作者:行者123 更新时间:2023-11-30 19:28:11 25 4
gpt4 key购买 nike

我想创建一个复选框,如果它被选中那么它应该显示下拉列表。如果未选中,则应隐藏下拉菜单。这是我的代码在 Form.Designer.cs 文件中的样子。

        this.comboBox2.FormattingEnabled = true;
this.comboBox2.Items.AddRange(new object[] {
"Database 1",
"Database 2",
"Database 3"});
this.comboBox2.Location = new System.Drawing.Point(165, 436);
this.comboBox2.Name = "comboBox2";
this.comboBox2.Size = new System.Drawing.Size(150, 21);
this.comboBox2.TabIndex = 13;
this.comboBox2.Text = "Database";

我在其他文件中的复选框代码是

 if  (checkBox1.CheckState == CheckState.Checked)
{

}

最佳答案

使用可见

this.comboBox2.Visible = false;

这将隐藏 comboBox2

关于c# - 在 C# 中隐藏下拉列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16362067/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com