📄 formcheckbox.designer.cs
字号:
namespace CheckBoxExample
{
partial class FormCheckBox
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.checkBoxSelectAll = new System.Windows.Forms.CheckBox();
this.checkBoxColor = new System.Windows.Forms.CheckBox();
this.checkBoxFont = new System.Windows.Forms.CheckBox();
this.SuspendLayout();
//
// checkBoxSelectAll
//
this.checkBoxSelectAll.AutoSize = true;
this.checkBoxSelectAll.Location = new System.Drawing.Point(89, 36);
this.checkBoxSelectAll.Name = "checkBoxSelectAll";
this.checkBoxSelectAll.Size = new System.Drawing.Size(48, 16);
this.checkBoxSelectAll.TabIndex = 0;
this.checkBoxSelectAll.Text = "全选";
this.checkBoxSelectAll.UseVisualStyleBackColor = true;
this.checkBoxSelectAll.Click += new System.EventHandler(this.checkBoxSelectAll_Click);
this.checkBoxSelectAll.CheckedChanged += new System.EventHandler(this.checkBoxSelectAll_CheckedChanged);
//
// checkBoxColor
//
this.checkBoxColor.AutoSize = true;
this.checkBoxColor.Location = new System.Drawing.Point(30, 106);
this.checkBoxColor.Name = "checkBoxColor";
this.checkBoxColor.Size = new System.Drawing.Size(96, 16);
this.checkBoxColor.TabIndex = 1;
this.checkBoxColor.Text = "更改窗体颜色";
this.checkBoxColor.UseVisualStyleBackColor = true;
this.checkBoxColor.Click += new System.EventHandler(this.checkBoxColor_Click);
this.checkBoxColor.CheckedChanged += new System.EventHandler(this.checkBoxColor_CheckedChanged);
//
// checkBoxFont
//
this.checkBoxFont.AutoSize = true;
this.checkBoxFont.Location = new System.Drawing.Point(189, 106);
this.checkBoxFont.Name = "checkBoxFont";
this.checkBoxFont.Size = new System.Drawing.Size(96, 16);
this.checkBoxFont.TabIndex = 2;
this.checkBoxFont.Text = "更改字体大小";
this.checkBoxFont.UseVisualStyleBackColor = true;
this.checkBoxFont.Click += new System.EventHandler(this.checkBoxFont_Click);
this.checkBoxFont.CheckedChanged += new System.EventHandler(this.checkBoxFont_CheckedChanged);
//
// FormCheckBox
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(292, 226);
this.Controls.Add(this.checkBoxFont);
this.Controls.Add(this.checkBoxColor);
this.Controls.Add(this.checkBoxSelectAll);
this.Name = "FormCheckBox";
this.Text = "复选框示例";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.CheckBox checkBoxSelectAll;
private System.Windows.Forms.CheckBox checkBoxColor;
private System.Windows.Forms.CheckBox checkBoxFont;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -