Form1.Designer.cs 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. namespace Update
  2. {
  3. partial class Form1
  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. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
  29. this.stepProgressLabel = new System.Windows.Forms.Label();
  30. this.stepProgressBar = new System.Windows.Forms.ProgressBar();
  31. this.SuspendLayout();
  32. //
  33. // stepProgressLabel
  34. //
  35. this.stepProgressLabel.AutoSize = true;
  36. this.stepProgressLabel.Location = new System.Drawing.Point(12, 42);
  37. this.stepProgressLabel.Name = "stepProgressLabel";
  38. this.stepProgressLabel.Size = new System.Drawing.Size(53, 12);
  39. this.stepProgressLabel.TabIndex = 3;
  40. this.stepProgressLabel.Text = "检查更新";
  41. //
  42. // stepProgressBar
  43. //
  44. this.stepProgressBar.Location = new System.Drawing.Point(12, 12);
  45. this.stepProgressBar.Name = "stepProgressBar";
  46. this.stepProgressBar.Size = new System.Drawing.Size(400, 20);
  47. this.stepProgressBar.Step = 1;
  48. this.stepProgressBar.TabIndex = 2;
  49. //
  50. // Form1
  51. //
  52. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  53. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  54. this.ClientSize = new System.Drawing.Size(425, 69);
  55. this.Controls.Add(this.stepProgressLabel);
  56. this.Controls.Add(this.stepProgressBar);
  57. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  58. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  59. this.MaximizeBox = false;
  60. this.Name = "Form1";
  61. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  62. this.Text = "大教研升级程序";
  63. this.ResumeLayout(false);
  64. this.PerformLayout();
  65. }
  66. #endregion
  67. private System.Windows.Forms.Label stepProgressLabel;
  68. private System.Windows.Forms.ProgressBar stepProgressBar;
  69. }
  70. }