RT。谢谢
如:用if语句可以这样写,但是switch语句怎么实现呢
private void comboBox_SelectedIndexChanged(object sender, EventArgs e)
{
this.groupBox.Visible = true;
string value = this.comboBox.SelectedItem.ToString();
if (value.Equals("小说"))
{
setValue1();
setValue2();
this.groupBox.Text = ”123“
this.label1.Visible = true;
this.textBox1.Visible = true;
}
}
请问C#winform窗体中用switch语句怎么实现切换comboBox选项时groupBox中...
string value = this.comboBox.SelectedItem.ToString();switch(value){ case "小说" :setValue1();setValue2();this.groupBox.Text = ”123“this.label1.Visible = true;this.textBox1.Visible = true;break;}
c#如何实现在一个用户控件中点击button切换到另一个用户控件
假设两个用户控件(UserControl)分别为ctrl1,ctrl2,把ctrl1和ctrl2都放在groupbox中,Dock属性都设置为DockStyle.Fill,撑满groupbox。然后在ctrl1内部添加一个事件:public event Action ControlSwitch;在ctrl1的button点击事件里这么写:if(ControlSwitch!=null) ControlSwitch();在ctrl1和ctrl2的父级...
C#开发入门及项目实战的目录
9.4.1 下拉组合框控件(ComboBox控件) 2109.4.2 复选框控件(CheckBox控件) 2139.4.3 单选按钮控件(RadioButton控件) 2149.4.4 数值选择控件(NumericUpDown控件) 2169.4.5 列表控件(ListBox控件) 2189.5 分组类控件 2219.5.1 容器控件(Panel控件) 2219.5.2 分组框控件(GroupBox控件) 2239.5.3 选项卡控件(Tab...
C#编程全能词典的图书目录
FlowLayoutPanel控件Flush方法Focus方法FolderBrowserDialog控件Font属性FontDialog控件for语句foreach语句ForeColor属性Form窗体Format方法FormClosed事件FormClosing事件FromArgb方法泛型分部类GGDI+GetBytes方法GetDirectories方法GetFiles方法GetFileSystemEntries方法GetFileSystemInfos方法GetHostAddresses方法GetHostByAddress方法GetHostByName方法Ge...
C#程序设计标准教程的图书目录
3.1.2 使用if…else语句实现双分支选择结构 0463.1.3 使用if…else if…else语句实现多分支选择结构 0473.1.4 嵌套if语句的使用 0503.1.5 使用Switch语句实现多分支选择 0513.2 迭代语句 0533.2.1 使用while循环语句控制程序 0533.2.2 使用do while循环语句控制程序 0543.2.3 使用for循环语句控制程序 0553.2.4...