FormAutoUpdateCheck.Designer.cs 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. namespace Tofly.AutoUpdateSystem.Win
  2. {
  3. partial class FormAutoUpdateCheck
  4. {
  5. /// <summary>
  6. /// 必需的设计器变量。
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// 清理所有正在使用的资源。
  11. /// </summary>
  12. /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows 窗体设计器生成的代码
  22. /// <summary>
  23. /// 设计器支持所需的方法 - 不要
  24. /// 使用代码编辑器修改此方法的内容。
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.components = new System.ComponentModel.Container();
  29. this.btnCancel = new System.Windows.Forms.Button();
  30. this.lblError = new System.Windows.Forms.Label();
  31. this.mpbar1 = new DevExpress.XtraEditors.MarqueeProgressBarControl();
  32. this.lblProgressInfo = new System.Windows.Forms.Label();
  33. this.timerCheck = new System.Windows.Forms.Timer(this.components);
  34. ((System.ComponentModel.ISupportInitialize)(this.mpbar1.Properties)).BeginInit();
  35. this.SuspendLayout();
  36. //
  37. // btnCancel
  38. //
  39. this.btnCancel.Location = new System.Drawing.Point(168, 92);
  40. this.btnCancel.Name = "btnCancel";
  41. this.btnCancel.Size = new System.Drawing.Size(75, 24);
  42. this.btnCancel.TabIndex = 2;
  43. this.btnCancel.Text = "取消";
  44. this.btnCancel.Visible = false;
  45. this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
  46. //
  47. // lblError
  48. //
  49. this.lblError.Location = new System.Drawing.Point(10, 72);
  50. this.lblError.Margin = new System.Windows.Forms.Padding(3);
  51. this.lblError.Name = "lblError";
  52. this.lblError.Size = new System.Drawing.Size(48, 14);
  53. this.lblError.TabIndex = 1;
  54. this.lblError.Text = "错误消息";
  55. //
  56. // mpbar1
  57. //
  58. this.mpbar1.EditValue = 0;
  59. this.mpbar1.Location = new System.Drawing.Point(9, 12);
  60. this.mpbar1.Name = "mpbar1";
  61. this.mpbar1.Size = new System.Drawing.Size(390, 24);
  62. this.mpbar1.TabIndex = 3;
  63. //
  64. // lblProgressInfo
  65. //
  66. this.lblProgressInfo.AutoSize = true;
  67. this.lblProgressInfo.Location = new System.Drawing.Point(110, 44);
  68. this.lblProgressInfo.Name = "lblProgressInfo";
  69. this.lblProgressInfo.Size = new System.Drawing.Size(203, 12);
  70. this.lblProgressInfo.TabIndex = 1;
  71. this.lblProgressInfo.Text = "正在进行系统更新检测,请稍候 ……";
  72. //
  73. // timerCheck
  74. //
  75. this.timerCheck.Interval = 2000;
  76. this.timerCheck.Tick += new System.EventHandler(this.timerCheck_Tick);
  77. //
  78. // FormAutoUpdateCheck
  79. //
  80. this.ClientSize = new System.Drawing.Size(410, 122);
  81. this.Controls.Add(this.mpbar1);
  82. this.Controls.Add(this.btnCancel);
  83. this.Controls.Add(this.lblError);
  84. this.Controls.Add(this.lblProgressInfo);
  85. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
  86. this.MaximizeBox = false;
  87. this.MaximumSize = new System.Drawing.Size(426, 160);
  88. this.MinimizeBox = false;
  89. this.Name = "FormAutoUpdateCheck";
  90. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  91. this.Text = "系统更新检测";
  92. this.Shown += new System.EventHandler(this.FormAutoUpdateCheck_Shown);
  93. ((System.ComponentModel.ISupportInitialize)(this.mpbar1.Properties)).EndInit();
  94. this.ResumeLayout(false);
  95. this.PerformLayout();
  96. }
  97. #endregion
  98. private System.Windows.Forms.Button btnCancel;
  99. private System.Windows.Forms.Label lblError;
  100. private DevExpress.XtraEditors.MarqueeProgressBarControl mpbar1;
  101. private System.Windows.Forms.Label lblProgressInfo;
  102. private System.Windows.Forms.Timer timerCheck;
  103. }
  104. }