Form1.Designer.cs 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. namespace WindowsFormsApp1
  2. {
  3. partial class Form1
  4. {
  5. /// <summary>
  6. /// Обязательная переменная конструктора.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Освободить все используемые ресурсы.
  11. /// </summary>
  12. /// <param name="disposing">истинно, если управляемый ресурс должен быть удален; иначе ложно.</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
  22. /// <summary>
  23. /// Требуемый метод для поддержки конструктора — не изменяйте
  24. /// содержимое этого метода с помощью редактора кода.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.button1 = new System.Windows.Forms.Button();
  29. this.label1 = new System.Windows.Forms.Label();
  30. this.textBox1 = new System.Windows.Forms.TextBox();
  31. this.textBox2 = new System.Windows.Forms.TextBox();
  32. this.textBox3 = new System.Windows.Forms.TextBox();
  33. this.label2 = new System.Windows.Forms.Label();
  34. this.label3 = new System.Windows.Forms.Label();
  35. this.label4 = new System.Windows.Forms.Label();
  36. this.SuspendLayout();
  37. //
  38. // button1
  39. //
  40. this.button1.Location = new System.Drawing.Point(467, 166);
  41. this.button1.Name = "button1";
  42. this.button1.Size = new System.Drawing.Size(197, 73);
  43. this.button1.TabIndex = 0;
  44. this.button1.Text = "Узнать тип треугольника!";
  45. this.button1.UseVisualStyleBackColor = true;
  46. this.button1.Click += new System.EventHandler(this.button1_Click);
  47. //
  48. // label1
  49. //
  50. this.label1.AutoSize = true;
  51. this.label1.Location = new System.Drawing.Point(302, 48);
  52. this.label1.Name = "label1";
  53. this.label1.Size = new System.Drawing.Size(66, 13);
  54. this.label1.TabIndex = 1;
  55. this.label1.Text = "Программа";
  56. this.label1.Click += new System.EventHandler(this.label1_Click);
  57. //
  58. // textBox1
  59. //
  60. this.textBox1.Location = new System.Drawing.Point(57, 142);
  61. this.textBox1.Name = "textBox1";
  62. this.textBox1.Size = new System.Drawing.Size(274, 20);
  63. this.textBox1.TabIndex = 2;
  64. this.textBox1.TextChanged += new System.EventHandler(this.textBox1_TextChanged);
  65. //
  66. // textBox2
  67. //
  68. this.textBox2.Location = new System.Drawing.Point(57, 193);
  69. this.textBox2.Name = "textBox2";
  70. this.textBox2.Size = new System.Drawing.Size(274, 20);
  71. this.textBox2.TabIndex = 3;
  72. this.textBox2.TextChanged += new System.EventHandler(this.textBox2_TextChanged);
  73. //
  74. // textBox3
  75. //
  76. this.textBox3.Location = new System.Drawing.Point(57, 248);
  77. this.textBox3.Name = "textBox3";
  78. this.textBox3.Size = new System.Drawing.Size(274, 20);
  79. this.textBox3.TabIndex = 4;
  80. this.textBox3.TextChanged += new System.EventHandler(this.textBox3_TextChanged);
  81. //
  82. // label2
  83. //
  84. this.label2.AutoSize = true;
  85. this.label2.Location = new System.Drawing.Point(55, 126);
  86. this.label2.Name = "label2";
  87. this.label2.Size = new System.Drawing.Size(204, 13);
  88. this.label2.TabIndex = 5;
  89. this.label2.Text = "Введите первую сторону треугольника";
  90. this.label2.Click += new System.EventHandler(this.label2_Click);
  91. //
  92. // label3
  93. //
  94. this.label3.AutoSize = true;
  95. this.label3.Location = new System.Drawing.Point(55, 177);
  96. this.label3.Name = "label3";
  97. this.label3.Size = new System.Drawing.Size(203, 13);
  98. this.label3.TabIndex = 6;
  99. this.label3.Text = "Введите вторую сторону треугольника";
  100. this.label3.Click += new System.EventHandler(this.label3_Click);
  101. //
  102. // label4
  103. //
  104. this.label4.AutoSize = true;
  105. this.label4.Location = new System.Drawing.Point(55, 232);
  106. this.label4.Name = "label4";
  107. this.label4.Size = new System.Drawing.Size(203, 13);
  108. this.label4.TabIndex = 7;
  109. this.label4.Text = "Введите третью сторону треугольника";
  110. this.label4.Click += new System.EventHandler(this.label4_Click);
  111. //
  112. // Form1
  113. //
  114. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  115. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  116. this.ClientSize = new System.Drawing.Size(835, 463);
  117. this.Controls.Add(this.label4);
  118. this.Controls.Add(this.label3);
  119. this.Controls.Add(this.label2);
  120. this.Controls.Add(this.textBox3);
  121. this.Controls.Add(this.textBox2);
  122. this.Controls.Add(this.textBox1);
  123. this.Controls.Add(this.label1);
  124. this.Controls.Add(this.button1);
  125. this.Name = "Form1";
  126. this.Text = "Form1";
  127. this.Load += new System.EventHandler(this.Form1_Load);
  128. this.ResumeLayout(false);
  129. this.PerformLayout();
  130. }
  131. #endregion
  132. private System.Windows.Forms.Button button1;
  133. private System.Windows.Forms.Label label1;
  134. private System.Windows.Forms.TextBox textBox1;
  135. private System.Windows.Forms.TextBox textBox2;
  136. private System.Windows.Forms.TextBox textBox3;
  137. private System.Windows.Forms.Label label2;
  138. private System.Windows.Forms.Label label3;
  139. private System.Windows.Forms.Label label4;
  140. }
  141. }