📄 userdefinedforms.designer.cs
字号:
namespace Mine.UIL
{
partial class UserDefinedForms
{
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
/// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows 窗体设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要
/// 使用代码编辑器修改此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.labTip = new System.Windows.Forms.Label();
this.lableTitle = new System.Windows.Forms.Label();
this.butOK = new System.Windows.Forms.Button();
this.txtNumber = new System.Windows.Forms.TextBox();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.radioButton3 = new System.Windows.Forms.RadioButton();
this.radioButton2 = new System.Windows.Forms.RadioButton();
this.radioButton1 = new System.Windows.Forms.RadioButton();
this.groupBox1.SuspendLayout();
this.SuspendLayout();
//
// labTip
//
this.labTip.AutoSize = true;
this.labTip.ForeColor = System.Drawing.Color.Blue;
this.labTip.Location = new System.Drawing.Point(23, 71);
this.labTip.Name = "labTip";
this.labTip.Size = new System.Drawing.Size(101, 12);
this.labTip.TabIndex = 0;
this.labTip.Text = "请输入雷的数量:";
//
// lableTitle
//
this.lableTitle.AutoSize = true;
this.lableTitle.Font = new System.Drawing.Font("宋体", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.lableTitle.Location = new System.Drawing.Point(73, 28);
this.lableTitle.Name = "lableTitle";
this.lableTitle.Size = new System.Drawing.Size(109, 19);
this.lableTitle.TabIndex = 0;
this.lableTitle.Text = "自定义设置";
//
// butOK
//
this.butOK.ForeColor = System.Drawing.Color.Blue;
this.butOK.Location = new System.Drawing.Point(48, 221);
this.butOK.Name = "butOK";
this.butOK.Size = new System.Drawing.Size(189, 23);
this.butOK.TabIndex = 1;
this.butOK.Text = "确认";
this.butOK.UseVisualStyleBackColor = true;
this.butOK.Click += new System.EventHandler(this.butOK_Click);
//
// txtNumber
//
this.txtNumber.Location = new System.Drawing.Point(153, 68);
this.txtNumber.Name = "txtNumber";
this.txtNumber.Size = new System.Drawing.Size(100, 21);
this.txtNumber.TabIndex = 3;
//
// groupBox1
//
this.groupBox1.Controls.Add(this.radioButton3);
this.groupBox1.Controls.Add(this.radioButton2);
this.groupBox1.Controls.Add(this.radioButton1);
this.groupBox1.Location = new System.Drawing.Point(37, 104);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(200, 100);
this.groupBox1.TabIndex = 4;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "选择级别";
//
// radioButton3
//
this.radioButton3.AutoSize = true;
this.radioButton3.Location = new System.Drawing.Point(70, 64);
this.radioButton3.Name = "radioButton3";
this.radioButton3.Size = new System.Drawing.Size(47, 16);
this.radioButton3.TabIndex = 2;
this.radioButton3.TabStop = true;
this.radioButton3.Text = "高级";
this.radioButton3.UseVisualStyleBackColor = true;
this.radioButton3.CheckedChanged += new System.EventHandler(this.radioButton3_CheckedChanged);
//
// radioButton2
//
this.radioButton2.AutoSize = true;
this.radioButton2.Location = new System.Drawing.Point(70, 42);
this.radioButton2.Name = "radioButton2";
this.radioButton2.Size = new System.Drawing.Size(47, 16);
this.radioButton2.TabIndex = 1;
this.radioButton2.TabStop = true;
this.radioButton2.Text = "中级";
this.radioButton2.UseVisualStyleBackColor = true;
this.radioButton2.CheckedChanged += new System.EventHandler(this.radioButton3_CheckedChanged);
//
// radioButton1
//
this.radioButton1.AutoSize = true;
this.radioButton1.Location = new System.Drawing.Point(70, 20);
this.radioButton1.Name = "radioButton1";
this.radioButton1.Size = new System.Drawing.Size(47, 16);
this.radioButton1.TabIndex = 0;
this.radioButton1.Text = "初级";
this.radioButton1.UseVisualStyleBackColor = true;
this.radioButton1.CheckedChanged += new System.EventHandler(this.radioButton3_CheckedChanged);
//
// UserDefinedForms
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(292, 273);
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.txtNumber);
this.Controls.Add(this.butOK);
this.Controls.Add(this.lableTitle);
this.Controls.Add(this.labTip);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.Name = "UserDefinedForms";
this.Text = "UserDefinedForms";
this.Load += new System.EventHandler(this.UserDefinedForms_Load);
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label labTip;
private System.Windows.Forms.Label lableTitle;
private System.Windows.Forms.Button butOK;
private System.Windows.Forms.TextBox txtNumber;
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.RadioButton radioButton3;
private System.Windows.Forms.RadioButton radioButton2;
private System.Windows.Forms.RadioButton radioButton1;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -