112 lines
5.2 KiB
C#
112 lines
5.2 KiB
C#
namespace updater
|
||
{
|
||
partial class Form1
|
||
{
|
||
/// <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(Form1));
|
||
this.LabelLog = new System.Windows.Forms.Label();
|
||
this.ButtonUpdate = new System.Windows.Forms.Button();
|
||
this.LabelLocalVersion = new System.Windows.Forms.Label();
|
||
this.progressBar1 = new System.Windows.Forms.ProgressBar();
|
||
this.SuspendLayout();
|
||
//
|
||
// LabelLog
|
||
//
|
||
this.LabelLog.BackColor = System.Drawing.SystemColors.ControlLight;
|
||
this.LabelLog.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||
this.LabelLog.Location = new System.Drawing.Point(52, 52);
|
||
this.LabelLog.Name = "LabelLog";
|
||
this.LabelLog.Size = new System.Drawing.Size(340, 100);
|
||
this.LabelLog.TabIndex = 0;
|
||
this.LabelLog.Text = "正在检测";
|
||
this.LabelLog.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
|
||
this.LabelLog.Click += new System.EventHandler(this.LabelLog_Click);
|
||
//
|
||
// ButtonUpdate
|
||
//
|
||
this.ButtonUpdate.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(100)))), ((int)(((byte)(215)))));
|
||
this.ButtonUpdate.FlatAppearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(100)))), ((int)(((byte)(215)))));
|
||
this.ButtonUpdate.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Blue;
|
||
this.ButtonUpdate.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(100)))), ((int)(((byte)(215)))));
|
||
this.ButtonUpdate.FlatStyle = System.Windows.Forms.FlatStyle.System;
|
||
this.ButtonUpdate.ForeColor = System.Drawing.Color.White;
|
||
this.ButtonUpdate.Location = new System.Drawing.Point(183, 198);
|
||
this.ButtonUpdate.Name = "ButtonUpdate";
|
||
this.ButtonUpdate.Size = new System.Drawing.Size(78, 31);
|
||
this.ButtonUpdate.TabIndex = 1;
|
||
this.ButtonUpdate.Text = "立即更新";
|
||
this.ButtonUpdate.UseVisualStyleBackColor = false;
|
||
this.ButtonUpdate.Click += new System.EventHandler(this.ButtonUpdate_Click);
|
||
//
|
||
// LabelLocalVersion
|
||
//
|
||
this.LabelLocalVersion.Location = new System.Drawing.Point(172, 232);
|
||
this.LabelLocalVersion.Name = "LabelLocalVersion";
|
||
this.LabelLocalVersion.Size = new System.Drawing.Size(100, 23);
|
||
this.LabelLocalVersion.TabIndex = 2;
|
||
this.LabelLocalVersion.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
|
||
//
|
||
// progressBar1
|
||
//
|
||
this.progressBar1.Location = new System.Drawing.Point(52, 159);
|
||
this.progressBar1.Name = "progressBar1";
|
||
this.progressBar1.Size = new System.Drawing.Size(340, 10);
|
||
this.progressBar1.TabIndex = 3;
|
||
this.progressBar1.Visible = false;
|
||
//
|
||
// Form1
|
||
//
|
||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||
this.BackColor = System.Drawing.Color.White;
|
||
this.ClientSize = new System.Drawing.Size(438, 286);
|
||
this.Controls.Add(this.progressBar1);
|
||
this.Controls.Add(this.LabelLocalVersion);
|
||
this.Controls.Add(this.ButtonUpdate);
|
||
this.Controls.Add(this.LabelLog);
|
||
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
||
this.MaximizeBox = false;
|
||
this.MinimizeBox = false;
|
||
this.Name = "Form1";
|
||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
||
this.Text = "AI校对王更新";
|
||
this.Load += new System.EventHandler(this.Form1_Load);
|
||
this.ResumeLayout(false);
|
||
|
||
}
|
||
|
||
#endregion
|
||
|
||
private System.Windows.Forms.Label LabelLog;
|
||
private System.Windows.Forms.Button ButtonUpdate;
|
||
private System.Windows.Forms.Label LabelLocalVersion;
|
||
private System.Windows.Forms.ProgressBar progressBar1;
|
||
}
|
||
}
|
||
|