mirror of
https://github.com/2dust/v2rayN.git
synced 2025-12-10 13:30:21 +05:00
114 lines
4.4 KiB
C#
114 lines
4.4 KiB
C#
namespace v2rayN.Forms
|
||
{
|
||
partial class SubSettingControl
|
||
{
|
||
/// <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(SubSettingControl));
|
||
this.groupBox2 = new System.Windows.Forms.GroupBox();
|
||
this.chkEnabled = new System.Windows.Forms.CheckBox();
|
||
this.btnRemove = new System.Windows.Forms.Button();
|
||
this.txtUrl = new System.Windows.Forms.TextBox();
|
||
this.txtRemarks = new System.Windows.Forms.TextBox();
|
||
this.label2 = new System.Windows.Forms.Label();
|
||
this.label3 = new System.Windows.Forms.Label();
|
||
this.groupBox2.SuspendLayout();
|
||
this.SuspendLayout();
|
||
//
|
||
// groupBox2
|
||
//
|
||
resources.ApplyResources(this.groupBox2, "groupBox2");
|
||
this.groupBox2.Controls.Add(this.chkEnabled);
|
||
this.groupBox2.Controls.Add(this.btnRemove);
|
||
this.groupBox2.Controls.Add(this.txtUrl);
|
||
this.groupBox2.Controls.Add(this.txtRemarks);
|
||
this.groupBox2.Controls.Add(this.label2);
|
||
this.groupBox2.Controls.Add(this.label3);
|
||
this.groupBox2.Name = "groupBox2";
|
||
this.groupBox2.TabStop = false;
|
||
//
|
||
// chkEnabled
|
||
//
|
||
resources.ApplyResources(this.chkEnabled, "chkEnabled");
|
||
this.chkEnabled.Name = "chkEnabled";
|
||
this.chkEnabled.UseVisualStyleBackColor = true;
|
||
this.chkEnabled.Leave += new System.EventHandler(this.txtRemarks_Leave);
|
||
//
|
||
// btnRemove
|
||
//
|
||
resources.ApplyResources(this.btnRemove, "btnRemove");
|
||
this.btnRemove.Name = "btnRemove";
|
||
this.btnRemove.UseVisualStyleBackColor = true;
|
||
this.btnRemove.Click += new System.EventHandler(this.btnRemove_Click);
|
||
//
|
||
// txtUrl
|
||
//
|
||
resources.ApplyResources(this.txtUrl, "txtUrl");
|
||
this.txtUrl.Name = "txtUrl";
|
||
this.txtUrl.Leave += new System.EventHandler(this.txtRemarks_Leave);
|
||
//
|
||
// 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";
|
||
//
|
||
// label3
|
||
//
|
||
resources.ApplyResources(this.label3, "label3");
|
||
this.label3.Name = "label3";
|
||
//
|
||
// SubSettingControl
|
||
//
|
||
resources.ApplyResources(this, "$this");
|
||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||
this.Controls.Add(this.groupBox2);
|
||
this.Name = "SubSettingControl";
|
||
this.Load += new System.EventHandler(this.SubSettingControl_Load);
|
||
this.groupBox2.ResumeLayout(false);
|
||
this.groupBox2.PerformLayout();
|
||
this.ResumeLayout(false);
|
||
|
||
}
|
||
|
||
#endregion
|
||
|
||
private System.Windows.Forms.GroupBox groupBox2;
|
||
private System.Windows.Forms.TextBox txtUrl;
|
||
private System.Windows.Forms.TextBox txtRemarks;
|
||
private System.Windows.Forms.Label label2;
|
||
private System.Windows.Forms.Label label3;
|
||
private System.Windows.Forms.Button btnRemove;
|
||
private System.Windows.Forms.CheckBox chkEnabled;
|
||
}
|
||
}
|