Form1.Designer.cs 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. namespace _03_3_Tabliczka2
  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.tbRow2 = new System.Windows.Forms.TextBox();
  29. this.tbRow1 = new System.Windows.Forms.TextBox();
  30. this.tbCol2 = new System.Windows.Forms.TextBox();
  31. this.tbCol1 = new System.Windows.Forms.TextBox();
  32. this.label1 = new System.Windows.Forms.Label();
  33. this.button1 = new System.Windows.Forms.Button();
  34. this.SuspendLayout();
  35. //
  36. // tbRow2
  37. //
  38. this.tbRow2.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
  39. this.tbRow2.Location = new System.Drawing.Point(6, 280);
  40. this.tbRow2.Name = "tbRow2";
  41. this.tbRow2.Size = new System.Drawing.Size(100, 29);
  42. this.tbRow2.TabIndex = 9;
  43. this.tbRow2.Text = "10";
  44. //
  45. // tbRow1
  46. //
  47. this.tbRow1.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
  48. this.tbRow1.Location = new System.Drawing.Point(6, 47);
  49. this.tbRow1.Name = "tbRow1";
  50. this.tbRow1.Size = new System.Drawing.Size(100, 29);
  51. this.tbRow1.TabIndex = 8;
  52. this.tbRow1.Text = "1";
  53. //
  54. // tbCol2
  55. //
  56. this.tbCol2.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
  57. this.tbCol2.Location = new System.Drawing.Point(598, 12);
  58. this.tbCol2.Name = "tbCol2";
  59. this.tbCol2.Size = new System.Drawing.Size(100, 29);
  60. this.tbCol2.TabIndex = 7;
  61. this.tbCol2.Text = "10";
  62. //
  63. // tbCol1
  64. //
  65. this.tbCol1.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
  66. this.tbCol1.Location = new System.Drawing.Point(123, 12);
  67. this.tbCol1.Name = "tbCol1";
  68. this.tbCol1.Size = new System.Drawing.Size(100, 29);
  69. this.tbCol1.TabIndex = 6;
  70. this.tbCol1.Text = "1";
  71. //
  72. // label1
  73. //
  74. this.label1.AutoSize = true;
  75. this.label1.Font = new System.Drawing.Font("Consolas", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
  76. this.label1.Location = new System.Drawing.Point(119, 54);
  77. this.label1.Name = "label1";
  78. this.label1.Size = new System.Drawing.Size(70, 22);
  79. this.label1.TabIndex = 5;
  80. this.label1.Text = "label1";
  81. //
  82. // button1
  83. //
  84. this.button1.Location = new System.Drawing.Point(15, 393);
  85. this.button1.Name = "button1";
  86. this.button1.Size = new System.Drawing.Size(144, 47);
  87. this.button1.TabIndex = 10;
  88. this.button1.Text = "button1";
  89. this.button1.UseVisualStyleBackColor = true;
  90. this.button1.Click += new System.EventHandler(this.button1_Click);
  91. //
  92. // Form1
  93. //
  94. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  95. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  96. this.ClientSize = new System.Drawing.Size(800, 450);
  97. this.Controls.Add(this.button1);
  98. this.Controls.Add(this.tbRow2);
  99. this.Controls.Add(this.tbRow1);
  100. this.Controls.Add(this.tbCol2);
  101. this.Controls.Add(this.tbCol1);
  102. this.Controls.Add(this.label1);
  103. this.Name = "Form1";
  104. this.Text = "Form1";
  105. this.ResumeLayout(false);
  106. this.PerformLayout();
  107. }
  108. #endregion
  109. private System.Windows.Forms.TextBox tbRow2;
  110. private System.Windows.Forms.TextBox tbRow1;
  111. private System.Windows.Forms.TextBox tbCol2;
  112. private System.Windows.Forms.TextBox tbCol1;
  113. private System.Windows.Forms.Label label1;
  114. private System.Windows.Forms.Button button1;
  115. }
  116. }