MainForm.Designer.cs 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. namespace Oreo.VersionUpdate.Views
  2. {
  3. partial class MainForm
  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.label2 = new System.Windows.Forms.Label();
  29. this.label3 = new System.Windows.Forms.Label();
  30. this.LbVersionNumber = new System.Windows.Forms.Label();
  31. this.LbPluginName = new System.Windows.Forms.Label();
  32. this.LbUpdateDetail = new System.Windows.Forms.Label();
  33. this.label9 = new System.Windows.Forms.Label();
  34. this.LbCodeName = new System.Windows.Forms.Label();
  35. this.progressBar1 = new System.Windows.Forms.ProgressBar();
  36. this.SuspendLayout();
  37. //
  38. // label2
  39. //
  40. this.label2.AutoSize = true;
  41. this.label2.ForeColor = System.Drawing.Color.White;
  42. this.label2.Location = new System.Drawing.Point(12, 32);
  43. this.label2.Name = "label2";
  44. this.label2.Size = new System.Drawing.Size(65, 12);
  45. this.label2.TabIndex = 1;
  46. this.label2.Text = "更新插件:";
  47. this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  48. //
  49. // label3
  50. //
  51. this.label3.AutoSize = true;
  52. this.label3.ForeColor = System.Drawing.Color.White;
  53. this.label3.Location = new System.Drawing.Point(236, 9);
  54. this.label3.Name = "label3";
  55. this.label3.Size = new System.Drawing.Size(65, 12);
  56. this.label3.TabIndex = 2;
  57. this.label3.Text = "新版本号:";
  58. this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  59. //
  60. // LbVersionNumber
  61. //
  62. this.LbVersionNumber.Cursor = System.Windows.Forms.Cursors.Hand;
  63. this.LbVersionNumber.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  64. this.LbVersionNumber.ForeColor = System.Drawing.Color.White;
  65. this.LbVersionNumber.Location = new System.Drawing.Point(305, 9);
  66. this.LbVersionNumber.Name = "LbVersionNumber";
  67. this.LbVersionNumber.Size = new System.Drawing.Size(102, 12);
  68. this.LbVersionNumber.TabIndex = 4;
  69. this.LbVersionNumber.Text = "1.0.0.0";
  70. this.LbVersionNumber.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  71. this.LbVersionNumber.Click += new System.EventHandler(this.LbVersionNumber_Click);
  72. //
  73. // LbPluginName
  74. //
  75. this.LbPluginName.ForeColor = System.Drawing.Color.White;
  76. this.LbPluginName.Location = new System.Drawing.Point(81, 32);
  77. this.LbPluginName.Name = "LbPluginName";
  78. this.LbPluginName.Size = new System.Drawing.Size(326, 12);
  79. this.LbPluginName.TabIndex = 5;
  80. this.LbPluginName.Text = "无";
  81. this.LbPluginName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  82. //
  83. // LbUpdateDetail
  84. //
  85. this.LbUpdateDetail.ForeColor = System.Drawing.Color.White;
  86. this.LbUpdateDetail.Location = new System.Drawing.Point(14, 93);
  87. this.LbUpdateDetail.Name = "LbUpdateDetail";
  88. this.LbUpdateDetail.Size = new System.Drawing.Size(395, 31);
  89. this.LbUpdateDetail.TabIndex = 7;
  90. this.LbUpdateDetail.Text = "准备更新……";
  91. //
  92. // label9
  93. //
  94. this.label9.AutoSize = true;
  95. this.label9.ForeColor = System.Drawing.Color.White;
  96. this.label9.Location = new System.Drawing.Point(12, 9);
  97. this.label9.Name = "label9";
  98. this.label9.Size = new System.Drawing.Size(65, 12);
  99. this.label9.TabIndex = 8;
  100. this.label9.Text = "更新代号:";
  101. this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  102. //
  103. // LbCodeName
  104. //
  105. this.LbCodeName.ForeColor = System.Drawing.Color.White;
  106. this.LbCodeName.Location = new System.Drawing.Point(81, 9);
  107. this.LbCodeName.Name = "LbCodeName";
  108. this.LbCodeName.Size = new System.Drawing.Size(149, 12);
  109. this.LbCodeName.TabIndex = 9;
  110. this.LbCodeName.Text = "扬帆起航";
  111. this.LbCodeName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  112. //
  113. // progressBar1
  114. //
  115. this.progressBar1.Location = new System.Drawing.Point(14, 61);
  116. this.progressBar1.Maximum = 1000;
  117. this.progressBar1.Name = "progressBar1";
  118. this.progressBar1.Size = new System.Drawing.Size(395, 23);
  119. this.progressBar1.TabIndex = 10;
  120. //
  121. // MainForm
  122. //
  123. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  124. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  125. this.BackColor = System.Drawing.SystemColors.Highlight;
  126. this.ClientSize = new System.Drawing.Size(425, 135);
  127. this.Controls.Add(this.progressBar1);
  128. this.Controls.Add(this.LbCodeName);
  129. this.Controls.Add(this.label9);
  130. this.Controls.Add(this.LbUpdateDetail);
  131. this.Controls.Add(this.LbPluginName);
  132. this.Controls.Add(this.LbVersionNumber);
  133. this.Controls.Add(this.label3);
  134. this.Controls.Add(this.label2);
  135. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  136. this.MaximizeBox = false;
  137. this.MinimizeBox = false;
  138. this.Name = "MainForm";
  139. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  140. this.Text = "正在准备升级……";
  141. this.Load += new System.EventHandler(this.MainForm_Load);
  142. this.ResumeLayout(false);
  143. this.PerformLayout();
  144. }
  145. #endregion
  146. private System.Windows.Forms.Label label2;
  147. private System.Windows.Forms.Label label3;
  148. private System.Windows.Forms.Label LbVersionNumber;
  149. private System.Windows.Forms.Label LbPluginName;
  150. private System.Windows.Forms.Label LbUpdateDetail;
  151. private System.Windows.Forms.Label label9;
  152. private System.Windows.Forms.Label LbCodeName;
  153. private System.Windows.Forms.ProgressBar progressBar1;
  154. }
  155. }