Form2.Designer.cs 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. namespace FlowSettingTest
  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.textBox2 = new System.Windows.Forms.TextBox();
  29. this.textBox1 = new System.Windows.Forms.TextBox();
  30. this.pictureBox1 = new System.Windows.Forms.PictureBox();
  31. this.panel1 = new System.Windows.Forms.Panel();
  32. this.button1 = new System.Windows.Forms.Button();
  33. this.button2 = new System.Windows.Forms.Button();
  34. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
  35. this.SuspendLayout();
  36. //
  37. // textBox2
  38. //
  39. this.textBox2.Location = new System.Drawing.Point(460, 15);
  40. this.textBox2.Multiline = true;
  41. this.textBox2.Name = "textBox2";
  42. this.textBox2.ScrollBars = System.Windows.Forms.ScrollBars.Both;
  43. this.textBox2.Size = new System.Drawing.Size(181, 472);
  44. this.textBox2.TabIndex = 8;
  45. //
  46. // textBox1
  47. //
  48. this.textBox1.Location = new System.Drawing.Point(132, 12);
  49. this.textBox1.Multiline = true;
  50. this.textBox1.Name = "textBox1";
  51. this.textBox1.ScrollBars = System.Windows.Forms.ScrollBars.Both;
  52. this.textBox1.Size = new System.Drawing.Size(181, 475);
  53. this.textBox1.TabIndex = 9;
  54. //
  55. // pictureBox1
  56. //
  57. this.pictureBox1.BackColor = System.Drawing.Color.Red;
  58. this.pictureBox1.Location = new System.Drawing.Point(340, 15);
  59. this.pictureBox1.Name = "pictureBox1";
  60. this.pictureBox1.Size = new System.Drawing.Size(100, 50);
  61. this.pictureBox1.TabIndex = 7;
  62. this.pictureBox1.TabStop = false;
  63. //
  64. // panel1
  65. //
  66. this.panel1.BackColor = System.Drawing.Color.Red;
  67. this.panel1.Location = new System.Drawing.Point(21, 12);
  68. this.panel1.Name = "panel1";
  69. this.panel1.Size = new System.Drawing.Size(100, 53);
  70. this.panel1.TabIndex = 6;
  71. //
  72. // button1
  73. //
  74. this.button1.Location = new System.Drawing.Point(21, 72);
  75. this.button1.Name = "button1";
  76. this.button1.Size = new System.Drawing.Size(75, 23);
  77. this.button1.TabIndex = 10;
  78. this.button1.Text = "button1";
  79. this.button1.UseVisualStyleBackColor = true;
  80. this.button1.Click += new System.EventHandler(this.button1_Click);
  81. //
  82. // button2
  83. //
  84. this.button2.Location = new System.Drawing.Point(340, 72);
  85. this.button2.Name = "button2";
  86. this.button2.Size = new System.Drawing.Size(75, 23);
  87. this.button2.TabIndex = 10;
  88. this.button2.Text = "button1";
  89. this.button2.UseVisualStyleBackColor = true;
  90. this.button2.Click += new System.EventHandler(this.button2_Click);
  91. //
  92. // Form2
  93. //
  94. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  95. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  96. this.ClientSize = new System.Drawing.Size(923, 499);
  97. this.Controls.Add(this.button2);
  98. this.Controls.Add(this.button1);
  99. this.Controls.Add(this.textBox2);
  100. this.Controls.Add(this.textBox1);
  101. this.Controls.Add(this.pictureBox1);
  102. this.Controls.Add(this.panel1);
  103. this.Name = "Form2";
  104. this.Text = "Form2";
  105. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
  106. this.ResumeLayout(false);
  107. this.PerformLayout();
  108. }
  109. #endregion
  110. private System.Windows.Forms.TextBox textBox2;
  111. private System.Windows.Forms.TextBox textBox1;
  112. private System.Windows.Forms.PictureBox pictureBox1;
  113. private System.Windows.Forms.Panel panel1;
  114. private System.Windows.Forms.Button button1;
  115. private System.Windows.Forms.Button button2;
  116. }
  117. }