📄 formcheckedlistbox.designer.cs
字号:
namespace CheckedListBoxExample
{
partial class FormCheckedListBox
{
/// <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.buttonOK = new System.Windows.Forms.Button();
this.buttonReference = new System.Windows.Forms.Button();
this.checkedListBox1 = new System.Windows.Forms.CheckedListBox();
this.label1 = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// buttonOK
//
this.buttonOK.Location = new System.Drawing.Point(40, 200);
this.buttonOK.Name = "buttonOK";
this.buttonOK.Size = new System.Drawing.Size(98, 24);
this.buttonOK.TabIndex = 0;
this.buttonOK.Text = "提交我的选择";
this.buttonOK.UseVisualStyleBackColor = true;
this.buttonOK.Click += new System.EventHandler(this.buttonOK_Click);
//
// buttonReference
//
this.buttonReference.Location = new System.Drawing.Point(197, 200);
this.buttonReference.Name = "buttonReference";
this.buttonReference.Size = new System.Drawing.Size(98, 24);
this.buttonReference.TabIndex = 1;
this.buttonReference.Text = "查看选择建议";
this.buttonReference.UseVisualStyleBackColor = true;
this.buttonReference.Click += new System.EventHandler(this.buttonReference_Click);
//
// checkedListBox1
//
this.checkedListBox1.CheckOnClick = true;
this.checkedListBox1.FormattingEnabled = true;
this.checkedListBox1.Items.AddRange(new object[] {
"C#高级编程",
"编译原理",
"操作系统",
"计算机体系结构",
"计算机网络",
"计算机英语",
"软件工程",
"数据库技术",
"通信原理",
"微机接口技术"});
this.checkedListBox1.Location = new System.Drawing.Point(40, 60);
this.checkedListBox1.MultiColumn = true;
this.checkedListBox1.Name = "checkedListBox1";
this.checkedListBox1.Size = new System.Drawing.Size(255, 84);
this.checkedListBox1.Sorted = true;
this.checkedListBox1.TabIndex = 2;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(42, 26);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(149, 12);
this.label1.TabIndex = 3;
this.label1.Text = "请选择你所需要学习的课程";
//
// FormCheckedListBox
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(329, 244);
this.Controls.Add(this.label1);
this.Controls.Add(this.checkedListBox1);
this.Controls.Add(this.buttonReference);
this.Controls.Add(this.buttonOK);
this.MaximizeBox = false;
this.Name = "FormCheckedListBox";
this.Text = "Form1";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button buttonOK;
private System.Windows.Forms.Button buttonReference;
private System.Windows.Forms.CheckedListBox checkedListBox1;
private System.Windows.Forms.Label label1;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -