Form2.Designer.cs 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. namespace XqMainFrame
  2. {
  3. partial class Form2
  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.panel1 = new System.Windows.Forms.Panel();
  29. this.panel2 = new System.Windows.Forms.Panel();
  30. this.button1 = new System.Windows.Forms.Button();
  31. this.label1 = new System.Windows.Forms.Label();
  32. this.textBox1 = new System.Windows.Forms.TextBox();
  33. this.button2 = new System.Windows.Forms.Button();
  34. this.panel1.SuspendLayout();
  35. this.SuspendLayout();
  36. //
  37. // panel1
  38. //
  39. this.panel1.Controls.Add(this.button2);
  40. this.panel1.Controls.Add(this.textBox1);
  41. this.panel1.Controls.Add(this.label1);
  42. this.panel1.Controls.Add(this.button1);
  43. this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
  44. this.panel1.Location = new System.Drawing.Point(0, 0);
  45. this.panel1.Name = "panel1";
  46. this.panel1.Size = new System.Drawing.Size(943, 68);
  47. this.panel1.TabIndex = 0;
  48. //
  49. // panel2
  50. //
  51. this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
  52. this.panel2.Location = new System.Drawing.Point(0, 68);
  53. this.panel2.Name = "panel2";
  54. this.panel2.Size = new System.Drawing.Size(943, 527);
  55. this.panel2.TabIndex = 1;
  56. //
  57. // button1
  58. //
  59. this.button1.Location = new System.Drawing.Point(56, 23);
  60. this.button1.Name = "button1";
  61. this.button1.Size = new System.Drawing.Size(75, 23);
  62. this.button1.TabIndex = 0;
  63. this.button1.Text = "button1";
  64. this.button1.UseVisualStyleBackColor = true;
  65. this.button1.Click += new System.EventHandler(this.button1_Click);
  66. //
  67. // label1
  68. //
  69. this.label1.AutoSize = true;
  70. this.label1.Location = new System.Drawing.Point(323, 30);
  71. this.label1.Name = "label1";
  72. this.label1.Size = new System.Drawing.Size(41, 12);
  73. this.label1.TabIndex = 1;
  74. this.label1.Text = "label1";
  75. //
  76. // textBox1
  77. //
  78. this.textBox1.Location = new System.Drawing.Point(370, 27);
  79. this.textBox1.Name = "textBox1";
  80. this.textBox1.Size = new System.Drawing.Size(164, 21);
  81. this.textBox1.TabIndex = 2;
  82. //
  83. // button2
  84. //
  85. this.button2.Location = new System.Drawing.Point(172, 23);
  86. this.button2.Name = "button2";
  87. this.button2.Size = new System.Drawing.Size(75, 23);
  88. this.button2.TabIndex = 3;
  89. this.button2.Text = "button2";
  90. this.button2.UseVisualStyleBackColor = true;
  91. this.button2.Click += new System.EventHandler(this.button2_Click);
  92. //
  93. // Form2
  94. //
  95. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  96. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  97. this.ClientSize = new System.Drawing.Size(943, 595);
  98. this.Controls.Add(this.panel2);
  99. this.Controls.Add(this.panel1);
  100. this.Name = "Form2";
  101. this.Text = "Form2";
  102. this.Load += new System.EventHandler(this.Form2_Load);
  103. this.panel1.ResumeLayout(false);
  104. this.panel1.PerformLayout();
  105. this.ResumeLayout(false);
  106. }
  107. #endregion
  108. private System.Windows.Forms.Panel panel1;
  109. private System.Windows.Forms.Button button1;
  110. private System.Windows.Forms.Panel panel2;
  111. private System.Windows.Forms.TextBox textBox1;
  112. private System.Windows.Forms.Label label1;
  113. private System.Windows.Forms.Button button2;
  114. }
  115. }