Form1.Designer.cs 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. namespace _04_1_Metody
  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.button2 = new System.Windows.Forms.Button();
  30. this.button3 = new System.Windows.Forms.Button();
  31. this.button4 = new System.Windows.Forms.Button();
  32. this.button5 = new System.Windows.Forms.Button();
  33. this.button6 = new System.Windows.Forms.Button();
  34. this.button7 = new System.Windows.Forms.Button();
  35. this.button8 = new System.Windows.Forms.Button();
  36. this.SuspendLayout();
  37. //
  38. // button1
  39. //
  40. this.button1.Location = new System.Drawing.Point(16, 22);
  41. this.button1.Name = "button1";
  42. this.button1.Size = new System.Drawing.Size(155, 73);
  43. this.button1.TabIndex = 0;
  44. this.button1.Text = "Met01";
  45. this.button1.UseVisualStyleBackColor = true;
  46. this.button1.Click += new System.EventHandler(this.button1_Click);
  47. //
  48. // button2
  49. //
  50. this.button2.Location = new System.Drawing.Point(177, 26);
  51. this.button2.Name = "button2";
  52. this.button2.Size = new System.Drawing.Size(96, 69);
  53. this.button2.TabIndex = 1;
  54. this.button2.Text = "Met02";
  55. this.button2.UseVisualStyleBackColor = true;
  56. this.button2.Click += new System.EventHandler(this.button2_Click);
  57. //
  58. // button3
  59. //
  60. this.button3.Location = new System.Drawing.Point(279, 26);
  61. this.button3.Name = "button3";
  62. this.button3.Size = new System.Drawing.Size(96, 69);
  63. this.button3.TabIndex = 2;
  64. this.button3.Text = "Met03";
  65. this.button3.UseVisualStyleBackColor = true;
  66. this.button3.Click += new System.EventHandler(this.button3_Click);
  67. //
  68. // button4
  69. //
  70. this.button4.Location = new System.Drawing.Point(12, 153);
  71. this.button4.Name = "button4";
  72. this.button4.Size = new System.Drawing.Size(155, 73);
  73. this.button4.TabIndex = 3;
  74. this.button4.Text = "Met04";
  75. this.button4.UseVisualStyleBackColor = true;
  76. this.button4.Click += new System.EventHandler(this.button4_Click);
  77. //
  78. // button5
  79. //
  80. this.button5.Location = new System.Drawing.Point(177, 153);
  81. this.button5.Name = "button5";
  82. this.button5.Size = new System.Drawing.Size(96, 69);
  83. this.button5.TabIndex = 4;
  84. this.button5.Text = "Met05";
  85. this.button5.UseVisualStyleBackColor = true;
  86. this.button5.Click += new System.EventHandler(this.button5_Click);
  87. //
  88. // button6
  89. //
  90. this.button6.Location = new System.Drawing.Point(330, 125);
  91. this.button6.Name = "button6";
  92. this.button6.Size = new System.Drawing.Size(248, 128);
  93. this.button6.TabIndex = 5;
  94. this.button6.Text = "statyczne";
  95. this.button6.UseVisualStyleBackColor = true;
  96. this.button6.Click += new System.EventHandler(this.button6_Click);
  97. //
  98. // button7
  99. //
  100. this.button7.Location = new System.Drawing.Point(330, 259);
  101. this.button7.Name = "button7";
  102. this.button7.Size = new System.Drawing.Size(248, 128);
  103. this.button7.TabIndex = 6;
  104. this.button7.Text = "rozszerzające";
  105. this.button7.UseVisualStyleBackColor = true;
  106. this.button7.Click += new System.EventHandler(this.button7_Click);
  107. //
  108. // button8
  109. //
  110. this.button8.Location = new System.Drawing.Point(683, 112);
  111. this.button8.Name = "button8";
  112. this.button8.Size = new System.Drawing.Size(99, 41);
  113. this.button8.TabIndex = 7;
  114. this.button8.Text = "base";
  115. this.button8.UseVisualStyleBackColor = true;
  116. this.button8.Click += new System.EventHandler(this.button8_Click);
  117. //
  118. // Form1
  119. //
  120. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  121. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  122. this.ClientSize = new System.Drawing.Size(800, 450);
  123. this.Controls.Add(this.button8);
  124. this.Controls.Add(this.button7);
  125. this.Controls.Add(this.button6);
  126. this.Controls.Add(this.button5);
  127. this.Controls.Add(this.button4);
  128. this.Controls.Add(this.button3);
  129. this.Controls.Add(this.button2);
  130. this.Controls.Add(this.button1);
  131. this.Name = "Form1";
  132. this.Text = "Form1";
  133. this.ResumeLayout(false);
  134. }
  135. #endregion
  136. private System.Windows.Forms.Button button1;
  137. private System.Windows.Forms.Button button2;
  138. private System.Windows.Forms.Button button3;
  139. private System.Windows.Forms.Button button4;
  140. private System.Windows.Forms.Button button5;
  141. private System.Windows.Forms.Button button6;
  142. private System.Windows.Forms.Button button7;
  143. private System.Windows.Forms.Button button8;
  144. }
  145. }