📄 frmroom.designer.cs
字号:
namespace feiyun0112.cnblogs.com.CSDNReader
{
partial class frmRoom
{
/// <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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmRoom));
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.txtName = new System.Windows.Forms.TextBox();
this.txtURL = new System.Windows.Forms.TextBox();
this.btnOK = new System.Windows.Forms.Button();
this.btnCancel = new System.Windows.Forms.Button();
this.chkGroup = new System.Windows.Forms.CheckBox();
this.chkChild = new System.Windows.Forms.CheckBox();
this.cboGroup = new System.Windows.Forms.ComboBox();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(9, 9);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(31, 13);
this.label1.TabIndex = 0;
this.label1.Text = "名称";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(9, 58);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(29, 13);
this.label2.TabIndex = 1;
this.label2.Text = "URL";
//
// txtName
//
this.txtName.Location = new System.Drawing.Point(12, 25);
this.txtName.Name = "txtName";
this.txtName.Size = new System.Drawing.Size(100, 20);
this.txtName.TabIndex = 2;
//
// txtURL
//
this.txtURL.Location = new System.Drawing.Point(12, 74);
this.txtURL.Name = "txtURL";
this.txtURL.Size = new System.Drawing.Size(459, 20);
this.txtURL.TabIndex = 3;
//
// btnOK
//
this.btnOK.Location = new System.Drawing.Point(299, 125);
this.btnOK.Name = "btnOK";
this.btnOK.Size = new System.Drawing.Size(75, 23);
this.btnOK.TabIndex = 4;
this.btnOK.Text = "确定";
this.btnOK.UseVisualStyleBackColor = true;
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
//
// btnCancel
//
this.btnCancel.Location = new System.Drawing.Point(396, 125);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(75, 23);
this.btnCancel.TabIndex = 5;
this.btnCancel.Text = "取消";
this.btnCancel.UseVisualStyleBackColor = true;
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
//
// chkGroup
//
this.chkGroup.AutoSize = true;
this.chkGroup.Checked = true;
this.chkGroup.CheckState = System.Windows.Forms.CheckState.Checked;
this.chkGroup.Location = new System.Drawing.Point(161, 27);
this.chkGroup.Name = "chkGroup";
this.chkGroup.Size = new System.Drawing.Size(62, 17);
this.chkGroup.TabIndex = 6;
this.chkGroup.Text = "社区组";
this.chkGroup.UseVisualStyleBackColor = true;
this.chkGroup.CheckedChanged += new System.EventHandler(this.chkGroup_CheckedChanged);
//
// chkChild
//
this.chkChild.AutoSize = true;
this.chkChild.Checked = true;
this.chkChild.CheckState = System.Windows.Forms.CheckState.Checked;
this.chkChild.Location = new System.Drawing.Point(12, 104);
this.chkChild.Name = "chkChild";
this.chkChild.Size = new System.Drawing.Size(86, 17);
this.chkChild.TabIndex = 7;
this.chkChild.Text = "属于 组:";
this.chkChild.UseVisualStyleBackColor = true;
this.chkChild.CheckedChanged += new System.EventHandler(this.chkChild_CheckedChanged);
//
// cboGroup
//
this.cboGroup.FormattingEnabled = true;
this.cboGroup.Location = new System.Drawing.Point(104, 100);
this.cboGroup.Name = "cboGroup";
this.cboGroup.Size = new System.Drawing.Size(163, 21);
this.cboGroup.TabIndex = 8;
//
// frmRoom
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(483, 156);
this.Controls.Add(this.cboGroup);
this.Controls.Add(this.chkChild);
this.Controls.Add(this.chkGroup);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.btnOK);
this.Controls.Add(this.txtURL);
this.Controls.Add(this.txtName);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "frmRoom";
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "frmRoom";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.TextBox txtName;
private System.Windows.Forms.TextBox txtURL;
private System.Windows.Forms.Button btnOK;
private System.Windows.Forms.Button btnCancel;
private System.Windows.Forms.CheckBox chkGroup;
private System.Windows.Forms.CheckBox chkChild;
private System.Windows.Forms.ComboBox cboGroup;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -