1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- namespace UAS_AutoUpdate
- {
- partial class CheckUpdateWindow
- {
- /// <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._progressbar = new System.Windows.Forms.ProgressBar();
- this._processrate = new System.Windows.Forms.Label();
- this.SuspendLayout();
- //
- // _progressbar
- //
- this._progressbar.Location = new System.Drawing.Point(44, 56);
- this._progressbar.Name = "_progressbar";
- this._progressbar.Size = new System.Drawing.Size(253, 23);
- this._progressbar.TabIndex = 0;
- //
- // _processrate
- //
- this._processrate.AutoSize = true;
- this._processrate.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this._processrate.Location = new System.Drawing.Point(307, 57);
- this._processrate.Name = "_processrate";
- this._processrate.Size = new System.Drawing.Size(0, 21);
- this._processrate.TabIndex = 1;
- //
- // CheckUpdateWindow
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(373, 142);
- this.Controls.Add(this._processrate);
- this.Controls.Add(this._progressbar);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
- this.Name = "CheckUpdateWindow";
- this.Text = "检测升级";
- this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.CheckUpdateWindow_FormClosing);
- this.Load += new System.EventHandler(this.CheckUpdateWindow_Load);
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private System.Windows.Forms.ProgressBar _progressbar;
- private System.Windows.Forms.Label _processrate;
- }
- }
|