📜  如何在C#中设置CheckBox的可见性?

📅  最后修改于: 2021-05-29 21:03:21             🧑  作者: Mango

CheckBox控件是Windows窗体的一部分,用于接收用户输入。换句话说,CheckBox控件允许我们从给定列表中选择单个或多个元素。在CheckBox中,允许您设置一个表示CheckBox的值,并使用CheckBox的Visible属性显示其CheckBox控件。
如果要显示给定的CheckBox及其子控件,则将Visible属性的值设置为true,否则设置为false。此属性的默认值为true。在Windows窗体中,可以用两种不同的方式设置此属性:

1.设计时:这是通过以下步骤设置CheckBox的Visible属性的最简单方法:

  • 第1步:创建一个Windows窗体,如下图所示:
    Visual Studio->文件->新建->项目-> WindowsFormApp
  • 步骤2:从工具箱中拖动CheckBox控件,并将其放在Windows窗体上。您可以根据需要将CheckBox放置在Windows窗体上的任何位置。
  • 步骤3:拖放之后,您将转到CheckBox控件的属性,以使用Visible属性设置CheckBox的可见性。

    输出:

注意:如果Visible属性的值为true,则有时该控件可能不可见,因为它们隐藏在其他控件的后面。

2.运行时:比上述方法有些棘手。在此方法中,可以使用以下语法设置CheckBox的Visible属性:

public bool Visible { get; set; }

在这里,此属性的值类型为System.Boolean 。以下步骤用于设置CheckBox的Visible属性:

  • 步骤1:使用CheckBox类提供的CheckBox()构造函数创建一个复选框。
    // Creating checkbox
    CheckBox Mycheckbox = new CheckBox();
    
  • 步骤2:创建CheckBox之后,设置CheckBox类提供的CheckBox的Visible属性。
    // Set the Visible property of the CheckBox
    Mycheckbox.Visible = true;
    
  • 步骤3:最后,使用Add()方法将此复选框控件添加到表单中。
    // Add this checkbox to form
    this.Controls.Add(Mycheckbox);
    

    例子:

    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using System.Windows.Forms;
      
    namespace WindowsFormsApp5 {
      
    public partial class Form1 : Form {
      
        public Form1()
        {
            InitializeComponent();
        }
      
        private void Form1_Load(object sender, EventArgs e)
        {
      
            // Creating and setting the properties of label
            Label l = new Label();
            l.Text = "Select Gender:";
            l.Location = new Point(233, 111);
      
            // Adding lable to form
            this.Controls.Add(l);
      
            // Creating and setting the properties of CheckBox
            CheckBox Mycheckbox = new CheckBox();
            Mycheckbox.Height = 50;
            Mycheckbox.Width = 100;
            Mycheckbox.Location = new Point(229, 136);
            Mycheckbox.Text = "Male";
            Mycheckbox.Visible = true;
      
            // Adding checkbox to form
            this.Controls.Add(Mycheckbox);
      
            // Creating and setting the properties of CheckBox
            // This CheckBox is not displayed in the output because
            // the visibility of this CheckBox is set to be false
      
            CheckBox Mycheckbox1 = new CheckBox();
            Mycheckbox1.Height = 50;
            Mycheckbox1.Width = 100;
            Mycheckbox1.Location = new Point(230, 174);
            Mycheckbox1.Text = "Female";
            Mycheckbox1.Visible = false;
      
            // Adding checkbox to form
            this.Controls.Add(Mycheckbox1);
        }
    }
    }
    

    输出: