mirror of
https://github.com/2dust/v2rayN.git
synced 2025-05-05 22:58:50 +00:00
106 lines
4.3 KiB
C#
106 lines
4.3 KiB
C#
namespace v2rayUpgrade
|
||
{
|
||
partial class MainForm
|
||
{
|
||
/// <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.btnClose = new System.Windows.Forms.Button();
|
||
this.btnOK = new System.Windows.Forms.Button();
|
||
this.label1 = new System.Windows.Forms.Label();
|
||
this.label2 = new System.Windows.Forms.Label();
|
||
this.SuspendLayout();
|
||
//
|
||
// btnClose
|
||
//
|
||
this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
||
this.btnClose.ImeMode = System.Windows.Forms.ImeMode.NoControl;
|
||
this.btnClose.Location = new System.Drawing.Point(367, 118);
|
||
this.btnClose.Name = "btnClose";
|
||
this.btnClose.Size = new System.Drawing.Size(184, 89);
|
||
this.btnClose.TabIndex = 6;
|
||
this.btnClose.Text = "&Exit(退出)";
|
||
this.btnClose.UseVisualStyleBackColor = true;
|
||
this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
|
||
//
|
||
// btnOK
|
||
//
|
||
this.btnOK.ImeMode = System.Windows.Forms.ImeMode.NoControl;
|
||
this.btnOK.Location = new System.Drawing.Point(81, 118);
|
||
this.btnOK.Name = "btnOK";
|
||
this.btnOK.Size = new System.Drawing.Size(184, 89);
|
||
this.btnOK.TabIndex = 7;
|
||
this.btnOK.Text = "&Upgrade(升级)";
|
||
this.btnOK.UseVisualStyleBackColor = true;
|
||
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
|
||
//
|
||
// label1
|
||
//
|
||
this.label1.AutoSize = true;
|
||
this.label1.Font = new System.Drawing.Font("宋体", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||
this.label1.Location = new System.Drawing.Point(79, 64);
|
||
this.label1.Name = "label1";
|
||
this.label1.Size = new System.Drawing.Size(205, 15);
|
||
this.label1.TabIndex = 8;
|
||
this.label1.Text = "升级成功后将自动重启v2rayN";
|
||
//
|
||
// label2
|
||
//
|
||
this.label2.AutoSize = true;
|
||
this.label2.Font = new System.Drawing.Font("宋体", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||
this.label2.Location = new System.Drawing.Point(79, 37);
|
||
this.label2.Name = "label2";
|
||
this.label2.Size = new System.Drawing.Size(471, 15);
|
||
this.label2.TabIndex = 9;
|
||
this.label2.Text = "v2rayN will restart automatically after successful upgrade";
|
||
//
|
||
// MainForm
|
||
//
|
||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||
this.ClientSize = new System.Drawing.Size(616, 284);
|
||
this.Controls.Add(this.label2);
|
||
this.Controls.Add(this.label1);
|
||
this.Controls.Add(this.btnClose);
|
||
this.Controls.Add(this.btnOK);
|
||
this.Name = "MainForm";
|
||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
||
this.Text = "v2rayUpgrade";
|
||
this.Load += new System.EventHandler(this.MainForm_Load);
|
||
this.ResumeLayout(false);
|
||
this.PerformLayout();
|
||
|
||
}
|
||
|
||
#endregion
|
||
|
||
private System.Windows.Forms.Button btnClose;
|
||
private System.Windows.Forms.Button btnOK;
|
||
private System.Windows.Forms.Label label1;
|
||
private System.Windows.Forms.Label label2;
|
||
}
|
||
}
|
||
|