87 lines
3.2 KiB
C#
87 lines
3.2 KiB
C#
namespace v2rayN.Forms
|
||
{
|
||
partial class GroupSettingControl
|
||
{
|
||
/// <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 组件设计器生成的代码
|
||
|
||
/// <summary>
|
||
/// 设计器支持所需的方法 - 不要修改
|
||
/// 使用代码编辑器修改此方法的内容。
|
||
/// </summary>
|
||
private void InitializeComponent()
|
||
{
|
||
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(GroupSettingControl));
|
||
this.grbMain = new System.Windows.Forms.GroupBox();
|
||
this.btnRemove = new System.Windows.Forms.Button();
|
||
this.txtRemarks = new System.Windows.Forms.TextBox();
|
||
this.label2 = new System.Windows.Forms.Label();
|
||
this.grbMain.SuspendLayout();
|
||
this.SuspendLayout();
|
||
//
|
||
// grbMain
|
||
//
|
||
resources.ApplyResources(this.grbMain, "grbMain");
|
||
this.grbMain.Controls.Add(this.btnRemove);
|
||
this.grbMain.Controls.Add(this.txtRemarks);
|
||
this.grbMain.Controls.Add(this.label2);
|
||
this.grbMain.Name = "grbMain";
|
||
this.grbMain.TabStop = false;
|
||
//
|
||
// btnRemove
|
||
//
|
||
resources.ApplyResources(this.btnRemove, "btnRemove");
|
||
this.btnRemove.Name = "btnRemove";
|
||
this.btnRemove.UseVisualStyleBackColor = true;
|
||
this.btnRemove.Click += new System.EventHandler(this.btnRemove_Click);
|
||
//
|
||
// txtRemarks
|
||
//
|
||
resources.ApplyResources(this.txtRemarks, "txtRemarks");
|
||
this.txtRemarks.Name = "txtRemarks";
|
||
this.txtRemarks.Leave += new System.EventHandler(this.txtRemarks_Leave);
|
||
//
|
||
// label2
|
||
//
|
||
resources.ApplyResources(this.label2, "label2");
|
||
this.label2.Name = "label2";
|
||
//
|
||
// GroupSettingControl
|
||
//
|
||
resources.ApplyResources(this, "$this");
|
||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||
this.Controls.Add(this.grbMain);
|
||
this.Name = "GroupSettingControl";
|
||
this.Load += new System.EventHandler(this.GroupSettingControl_Load);
|
||
this.grbMain.ResumeLayout(false);
|
||
this.grbMain.PerformLayout();
|
||
this.ResumeLayout(false);
|
||
|
||
}
|
||
|
||
#endregion
|
||
|
||
private System.Windows.Forms.GroupBox grbMain;
|
||
private System.Windows.Forms.TextBox txtRemarks;
|
||
private System.Windows.Forms.Label label2;
|
||
private System.Windows.Forms.Button btnRemove;
|
||
}
|
||
}
|