123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- namespace Tofly.AutoUpdateSystem.Win
- {
- partial class FormAutoUpdateCheck
- {
-
-
-
- private System.ComponentModel.IContainer components = null;
-
-
-
-
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows 窗体设计器生成的代码
-
-
-
-
- private void InitializeComponent()
- {
- this.components = new System.ComponentModel.Container();
- this.btnCancel = new System.Windows.Forms.Button();
- this.lblError = new System.Windows.Forms.Label();
- this.mpbar1 = new DevExpress.XtraEditors.MarqueeProgressBarControl();
- this.lblProgressInfo = new System.Windows.Forms.Label();
- this.timerCheck = new System.Windows.Forms.Timer(this.components);
- ((System.ComponentModel.ISupportInitialize)(this.mpbar1.Properties)).BeginInit();
- this.SuspendLayout();
-
-
-
- this.btnCancel.Location = new System.Drawing.Point(168, 92);
- this.btnCancel.Name = "btnCancel";
- this.btnCancel.Size = new System.Drawing.Size(75, 24);
- this.btnCancel.TabIndex = 2;
- this.btnCancel.Text = "取消";
- this.btnCancel.Visible = false;
- this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
-
-
-
- this.lblError.Location = new System.Drawing.Point(10, 72);
- this.lblError.Margin = new System.Windows.Forms.Padding(3);
- this.lblError.Name = "lblError";
- this.lblError.Size = new System.Drawing.Size(48, 14);
- this.lblError.TabIndex = 1;
- this.lblError.Text = "错误消息";
-
-
-
- this.mpbar1.EditValue = 0;
- this.mpbar1.Location = new System.Drawing.Point(9, 12);
- this.mpbar1.Name = "mpbar1";
- this.mpbar1.Size = new System.Drawing.Size(390, 24);
- this.mpbar1.TabIndex = 3;
-
-
-
- this.lblProgressInfo.AutoSize = true;
- this.lblProgressInfo.Location = new System.Drawing.Point(110, 44);
- this.lblProgressInfo.Name = "lblProgressInfo";
- this.lblProgressInfo.Size = new System.Drawing.Size(203, 12);
- this.lblProgressInfo.TabIndex = 1;
- this.lblProgressInfo.Text = "正在进行系统更新检测,请稍候 ……";
-
-
-
- this.timerCheck.Interval = 2000;
- this.timerCheck.Tick += new System.EventHandler(this.timerCheck_Tick);
-
-
-
- this.ClientSize = new System.Drawing.Size(410, 122);
- this.Controls.Add(this.mpbar1);
- this.Controls.Add(this.btnCancel);
- this.Controls.Add(this.lblError);
- this.Controls.Add(this.lblProgressInfo);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
- this.MaximizeBox = false;
- this.MaximumSize = new System.Drawing.Size(426, 160);
- this.MinimizeBox = false;
- this.Name = "FormAutoUpdateCheck";
- this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
- this.Text = "系统更新检测";
- this.Shown += new System.EventHandler(this.FormAutoUpdateCheck_Shown);
- ((System.ComponentModel.ISupportInitialize)(this.mpbar1.Properties)).EndInit();
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private System.Windows.Forms.Button btnCancel;
- private System.Windows.Forms.Label lblError;
- private DevExpress.XtraEditors.MarqueeProgressBarControl mpbar1;
- private System.Windows.Forms.Label lblProgressInfo;
- private System.Windows.Forms.Timer timerCheck;
- }
- }
|