Form1.Designer.cs 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. namespace _01_1_Testy
  2. {
  3. partial class Form1
  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.button1 = new System.Windows.Forms.Button();
  29. this.textBox1 = new System.Windows.Forms.TextBox();
  30. this.button2 = new System.Windows.Forms.Button();
  31. this.button3 = new System.Windows.Forms.Button();
  32. this.button4 = new System.Windows.Forms.Button();
  33. this.SuspendLayout();
  34. //
  35. // button1
  36. //
  37. this.button1.Location = new System.Drawing.Point(12, 1);
  38. this.button1.Name = "button1";
  39. this.button1.Size = new System.Drawing.Size(191, 128);
  40. this.button1.TabIndex = 0;
  41. this.button1.Text = "button1";
  42. this.button1.UseVisualStyleBackColor = true;
  43. this.button1.Click += new System.EventHandler(this.button1_Click);
  44. //
  45. // textBox1
  46. //
  47. this.textBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  48. | System.Windows.Forms.AnchorStyles.Left)
  49. | System.Windows.Forms.AnchorStyles.Right)));
  50. this.textBox1.Font = new System.Drawing.Font("Consolas", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
  51. this.textBox1.Location = new System.Drawing.Point(12, 146);
  52. this.textBox1.Multiline = true;
  53. this.textBox1.Name = "textBox1";
  54. this.textBox1.ScrollBars = System.Windows.Forms.ScrollBars.Both;
  55. this.textBox1.Size = new System.Drawing.Size(776, 292);
  56. this.textBox1.TabIndex = 1;
  57. this.textBox1.WordWrap = false;
  58. //
  59. // button2
  60. //
  61. this.button2.Location = new System.Drawing.Point(220, 9);
  62. this.button2.Name = "button2";
  63. this.button2.Size = new System.Drawing.Size(177, 119);
  64. this.button2.TabIndex = 2;
  65. this.button2.Text = "button2";
  66. this.button2.UseVisualStyleBackColor = true;
  67. this.button2.Click += new System.EventHandler(this.button2_Click);
  68. //
  69. // button3
  70. //
  71. this.button3.Location = new System.Drawing.Point(410, 20);
  72. this.button3.Name = "button3";
  73. this.button3.Size = new System.Drawing.Size(157, 107);
  74. this.button3.TabIndex = 3;
  75. this.button3.Text = "button3";
  76. this.button3.UseVisualStyleBackColor = true;
  77. this.button3.Click += new System.EventHandler(this.button3_Click);
  78. //
  79. // button4
  80. //
  81. this.button4.Location = new System.Drawing.Point(595, 31);
  82. this.button4.Name = "button4";
  83. this.button4.Size = new System.Drawing.Size(145, 97);
  84. this.button4.TabIndex = 4;
  85. this.button4.Text = "button4";
  86. this.button4.UseVisualStyleBackColor = true;
  87. this.button4.Click += new System.EventHandler(this.button4_Click);
  88. //
  89. // Form1
  90. //
  91. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  92. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  93. this.ClientSize = new System.Drawing.Size(800, 450);
  94. this.Controls.Add(this.button4);
  95. this.Controls.Add(this.button3);
  96. this.Controls.Add(this.button2);
  97. this.Controls.Add(this.textBox1);
  98. this.Controls.Add(this.button1);
  99. this.Name = "Form1";
  100. this.Text = "Form1";
  101. this.ResumeLayout(false);
  102. this.PerformLayout();
  103. }
  104. #endregion
  105. private System.Windows.Forms.Button button1;
  106. private System.Windows.Forms.TextBox textBox1;
  107. private System.Windows.Forms.Button button2;
  108. private System.Windows.Forms.Button button3;
  109. private System.Windows.Forms.Button button4;
  110. }
  111. }