UpdateForm.Designer.cs 3.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. namespace MAutoUpdate
  2. {
  3. partial class UpdateForm
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, 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 Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.updateBar = new System.Windows.Forms.ProgressBar();
  29. this.LBTitle = new System.Windows.Forms.Label();
  30. this.label1 = new System.Windows.Forms.Label();
  31. this.SuspendLayout();
  32. //
  33. // updateBar
  34. //
  35. this.updateBar.BackColor = System.Drawing.Color.Lime;
  36. this.updateBar.Location = new System.Drawing.Point(40, 299);
  37. this.updateBar.Name = "updateBar";
  38. this.updateBar.Size = new System.Drawing.Size(509, 28);
  39. this.updateBar.TabIndex = 24;
  40. //
  41. // LBTitle
  42. //
  43. this.LBTitle.AutoSize = true;
  44. this.LBTitle.BackColor = System.Drawing.Color.Transparent;
  45. this.LBTitle.Font = new System.Drawing.Font("微软雅黑", 11F, System.Drawing.FontStyle.Bold);
  46. this.LBTitle.ForeColor = System.Drawing.Color.DimGray;
  47. this.LBTitle.Location = new System.Drawing.Point(12, 9);
  48. this.LBTitle.Name = "LBTitle";
  49. this.LBTitle.Size = new System.Drawing.Size(54, 19);
  50. this.LBTitle.TabIndex = 25;
  51. this.LBTitle.Text = "新版本";
  52. //
  53. // label1
  54. //
  55. this.label1.BackColor = System.Drawing.Color.Transparent;
  56. this.label1.Font = new System.Drawing.Font("微软雅黑", 11F, System.Drawing.FontStyle.Bold);
  57. this.label1.ForeColor = System.Drawing.Color.DimGray;
  58. this.label1.Location = new System.Drawing.Point(95, 243);
  59. this.label1.Name = "label1";
  60. this.label1.Size = new System.Drawing.Size(407, 19);
  61. this.label1.TabIndex = 26;
  62. this.label1.Text = "正在升级...";
  63. this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  64. //
  65. // UpdateForm
  66. //
  67. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  68. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  69. this.ClientSize = new System.Drawing.Size(588, 428);
  70. this.Controls.Add(this.label1);
  71. this.Controls.Add(this.LBTitle);
  72. this.Controls.Add(this.updateBar);
  73. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
  74. this.Name = "UpdateForm";
  75. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  76. this.Text = "UpdateForm";
  77. this.Load += new System.EventHandler(this.UpdateForm_Load);
  78. this.ResumeLayout(false);
  79. this.PerformLayout();
  80. }
  81. #endregion
  82. private System.Windows.Forms.ProgressBar updateBar;
  83. private System.Windows.Forms.Label LBTitle;
  84. private System.Windows.Forms.Label label1;
  85. }
  86. }