Form1.Designer.cs 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. namespace _01_1_TestKontrolek
  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.tbA = new System.Windows.Forms.TextBox();
  29. this.tbB = new System.Windows.Forms.TextBox();
  30. this.tbC = new System.Windows.Forms.TextBox();
  31. this.btnOblicz = new System.Windows.Forms.Button();
  32. this.label1 = new System.Windows.Forms.Label();
  33. this.SuspendLayout();
  34. //
  35. // tbA
  36. //
  37. this.tbA.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
  38. this.tbA.ForeColor = System.Drawing.Color.Blue;
  39. this.tbA.Location = new System.Drawing.Point(113, 95);
  40. this.tbA.Name = "tbA";
  41. this.tbA.Size = new System.Drawing.Size(164, 31);
  42. this.tbA.TabIndex = 0;
  43. this.tbA.Text = "1";
  44. //
  45. // tbB
  46. //
  47. this.tbB.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
  48. this.tbB.ForeColor = System.Drawing.Color.Blue;
  49. this.tbB.Location = new System.Drawing.Point(115, 152);
  50. this.tbB.Name = "tbB";
  51. this.tbB.Size = new System.Drawing.Size(162, 31);
  52. this.tbB.TabIndex = 1;
  53. this.tbB.Text = "2";
  54. //
  55. // tbC
  56. //
  57. this.tbC.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
  58. this.tbC.ForeColor = System.Drawing.Color.Blue;
  59. this.tbC.Location = new System.Drawing.Point(115, 204);
  60. this.tbC.Name = "tbC";
  61. this.tbC.Size = new System.Drawing.Size(162, 31);
  62. this.tbC.TabIndex = 2;
  63. this.tbC.Text = "3";
  64. //
  65. // btnOblicz
  66. //
  67. this.btnOblicz.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
  68. this.btnOblicz.ForeColor = System.Drawing.Color.Blue;
  69. this.btnOblicz.Location = new System.Drawing.Point(403, 112);
  70. this.btnOblicz.Name = "btnOblicz";
  71. this.btnOblicz.Size = new System.Drawing.Size(358, 155);
  72. this.btnOblicz.TabIndex = 3;
  73. this.btnOblicz.Text = "Oblicz\r\npierwiastki równania...\r\n";
  74. this.btnOblicz.UseVisualStyleBackColor = true;
  75. this.btnOblicz.Click += new System.EventHandler(this.btnOblicz_Click);
  76. //
  77. // label1
  78. //
  79. this.label1.AutoSize = true;
  80. this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
  81. this.label1.ForeColor = System.Drawing.Color.Blue;
  82. this.label1.Location = new System.Drawing.Point(126, 334);
  83. this.label1.Name = "label1";
  84. this.label1.Size = new System.Drawing.Size(76, 25);
  85. this.label1.TabIndex = 4;
  86. this.label1.Text = "label1";
  87. //
  88. // Form1
  89. //
  90. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  91. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  92. this.ClientSize = new System.Drawing.Size(942, 574);
  93. this.Controls.Add(this.label1);
  94. this.Controls.Add(this.btnOblicz);
  95. this.Controls.Add(this.tbC);
  96. this.Controls.Add(this.tbB);
  97. this.Controls.Add(this.tbA);
  98. this.Name = "Form1";
  99. this.Text = "Form1";
  100. this.ResumeLayout(false);
  101. this.PerformLayout();
  102. }
  103. #endregion
  104. private System.Windows.Forms.TextBox tbA;
  105. private System.Windows.Forms.TextBox tbB;
  106. private System.Windows.Forms.TextBox tbC;
  107. private System.Windows.Forms.Button btnOblicz;
  108. private System.Windows.Forms.Label label1;
  109. }
  110. }