TestUpdateForm.Designer.cs 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. namespace Y.Test.Views
  2. {
  3. partial class TestUpdateForm
  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.progressBar1 = new System.Windows.Forms.ProgressBar();
  29. this.progressBar2 = new System.Windows.Forms.ProgressBar();
  30. this.label1 = new System.Windows.Forms.Label();
  31. this.label2 = new System.Windows.Forms.Label();
  32. this.button1 = new System.Windows.Forms.Button();
  33. this.SuspendLayout();
  34. //
  35. // progressBar1
  36. //
  37. this.progressBar1.Location = new System.Drawing.Point(12, 12);
  38. this.progressBar1.Name = "progressBar1";
  39. this.progressBar1.Size = new System.Drawing.Size(260, 23);
  40. this.progressBar1.TabIndex = 0;
  41. //
  42. // progressBar2
  43. //
  44. this.progressBar2.Location = new System.Drawing.Point(12, 84);
  45. this.progressBar2.Name = "progressBar2";
  46. this.progressBar2.Size = new System.Drawing.Size(260, 23);
  47. this.progressBar2.TabIndex = 1;
  48. //
  49. // label1
  50. //
  51. this.label1.AutoSize = true;
  52. this.label1.Location = new System.Drawing.Point(13, 42);
  53. this.label1.Name = "label1";
  54. this.label1.Size = new System.Drawing.Size(41, 12);
  55. this.label1.TabIndex = 2;
  56. this.label1.Text = "label1";
  57. //
  58. // label2
  59. //
  60. this.label2.AutoSize = true;
  61. this.label2.Location = new System.Drawing.Point(13, 114);
  62. this.label2.Name = "label2";
  63. this.label2.Size = new System.Drawing.Size(41, 12);
  64. this.label2.TabIndex = 3;
  65. this.label2.Text = "label2";
  66. //
  67. // button1
  68. //
  69. this.button1.Location = new System.Drawing.Point(197, 226);
  70. this.button1.Name = "button1";
  71. this.button1.Size = new System.Drawing.Size(75, 23);
  72. this.button1.TabIndex = 4;
  73. this.button1.Text = "button1";
  74. this.button1.UseVisualStyleBackColor = true;
  75. this.button1.Click += new System.EventHandler(this.button1_Click);
  76. //
  77. // TestUpdateForm
  78. //
  79. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  80. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  81. this.ClientSize = new System.Drawing.Size(284, 261);
  82. this.Controls.Add(this.button1);
  83. this.Controls.Add(this.label2);
  84. this.Controls.Add(this.label1);
  85. this.Controls.Add(this.progressBar2);
  86. this.Controls.Add(this.progressBar1);
  87. this.Name = "TestUpdateForm";
  88. this.Text = "TestUpdateForm";
  89. this.Load += new System.EventHandler(this.TestUpdateForm_Load);
  90. this.ResumeLayout(false);
  91. this.PerformLayout();
  92. }
  93. #endregion
  94. private System.Windows.Forms.ProgressBar progressBar1;
  95. private System.Windows.Forms.ProgressBar progressBar2;
  96. private System.Windows.Forms.Label label1;
  97. private System.Windows.Forms.Label label2;
  98. private System.Windows.Forms.Button button1;
  99. }
  100. }