Form1.Designer.cs 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. 
  2. namespace WindowsFormsApp1
  3. {
  4. partial class Form1
  5. {
  6. /// <summary>
  7. /// Обязательная переменная конструктора.
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  10. /// <summary>
  11. /// Освободить все используемые ресурсы.
  12. /// </summary>
  13. /// <param name="disposing">истинно, если управляемый ресурс должен быть удален; иначе ложно.</param>
  14. protected override void Dispose(bool disposing)
  15. {
  16. if (disposing && (components != null))
  17. {
  18. components.Dispose();
  19. }
  20. base.Dispose(disposing);
  21. }
  22. #region Код, автоматически созданный конструктором форм Windows
  23. /// <summary>
  24. /// Требуемый метод для поддержки конструктора — не изменяйте
  25. /// содержимое этого метода с помощью редактора кода.
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
  30. this.pictureBox1 = new System.Windows.Forms.PictureBox();
  31. this.tbOutput = new System.Windows.Forms.TextBox();
  32. this.tbInputX = new System.Windows.Forms.TextBox();
  33. this.textBox3 = new System.Windows.Forms.TextBox();
  34. this.textBox4 = new System.Windows.Forms.TextBox();
  35. this.tbInputY = new System.Windows.Forms.TextBox();
  36. this.btnResh = new System.Windows.Forms.Button();
  37. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
  38. this.SuspendLayout();
  39. //
  40. // pictureBox1
  41. //
  42. this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
  43. this.pictureBox1.Location = new System.Drawing.Point(12, 12);
  44. this.pictureBox1.Name = "pictureBox1";
  45. this.pictureBox1.Size = new System.Drawing.Size(334, 94);
  46. this.pictureBox1.TabIndex = 0;
  47. this.pictureBox1.TabStop = false;
  48. //
  49. // tbOutput
  50. //
  51. this.tbOutput.Location = new System.Drawing.Point(44, 187);
  52. this.tbOutput.Multiline = true;
  53. this.tbOutput.Name = "tbOutput";
  54. this.tbOutput.Size = new System.Drawing.Size(270, 111);
  55. this.tbOutput.TabIndex = 1;
  56. //
  57. // tbInputX
  58. //
  59. this.tbInputX.Location = new System.Drawing.Point(72, 126);
  60. this.tbInputX.Name = "tbInputX";
  61. this.tbInputX.Size = new System.Drawing.Size(136, 20);
  62. this.tbInputX.TabIndex = 2;
  63. //
  64. // textBox3
  65. //
  66. this.textBox3.Enabled = false;
  67. this.textBox3.Location = new System.Drawing.Point(44, 126);
  68. this.textBox3.Name = "textBox3";
  69. this.textBox3.Size = new System.Drawing.Size(29, 20);
  70. this.textBox3.TabIndex = 3;
  71. this.textBox3.Text = "X =";
  72. //
  73. // textBox4
  74. //
  75. this.textBox4.Enabled = false;
  76. this.textBox4.Location = new System.Drawing.Point(44, 152);
  77. this.textBox4.Name = "textBox4";
  78. this.textBox4.Size = new System.Drawing.Size(29, 20);
  79. this.textBox4.TabIndex = 5;
  80. this.textBox4.Text = "Y =";
  81. //
  82. // tbInputY
  83. //
  84. this.tbInputY.Location = new System.Drawing.Point(72, 152);
  85. this.tbInputY.Name = "tbInputY";
  86. this.tbInputY.Size = new System.Drawing.Size(136, 20);
  87. this.tbInputY.TabIndex = 4;
  88. //
  89. // btnResh
  90. //
  91. this.btnResh.Location = new System.Drawing.Point(226, 126);
  92. this.btnResh.Name = "btnResh";
  93. this.btnResh.Size = new System.Drawing.Size(88, 49);
  94. this.btnResh.TabIndex = 6;
  95. this.btnResh.Text = "Решить";
  96. this.btnResh.UseVisualStyleBackColor = true;
  97. this.btnResh.Click += new System.EventHandler(this.btnResh_Click);
  98. //
  99. // Form1
  100. //
  101. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  102. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  103. this.ClientSize = new System.Drawing.Size(364, 324);
  104. this.Controls.Add(this.btnResh);
  105. this.Controls.Add(this.textBox4);
  106. this.Controls.Add(this.tbInputY);
  107. this.Controls.Add(this.textBox3);
  108. this.Controls.Add(this.tbInputX);
  109. this.Controls.Add(this.tbOutput);
  110. this.Controls.Add(this.pictureBox1);
  111. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  112. this.Name = "Form1";
  113. this.Text = "Form1";
  114. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
  115. this.ResumeLayout(false);
  116. this.PerformLayout();
  117. }
  118. #endregion
  119. private System.Windows.Forms.PictureBox pictureBox1;
  120. private System.Windows.Forms.TextBox tbOutput;
  121. private System.Windows.Forms.TextBox tbInputX;
  122. private System.Windows.Forms.TextBox textBox3;
  123. private System.Windows.Forms.TextBox textBox4;
  124. private System.Windows.Forms.TextBox tbInputY;
  125. private System.Windows.Forms.Button btnResh;
  126. }
  127. }