.Designer.cs 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. namespace Pract4_project
  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.peremenX = new System.Windows.Forms.Label();
  29. this.znachX = new System.Windows.Forms.TextBox();
  30. this.btnAnswer = new System.Windows.Forms.Button();
  31. this.pictureBox1 = new System.Windows.Forms.PictureBox();
  32. this.textAnswer = new System.Windows.Forms.TextBox();
  33. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
  34. this.SuspendLayout();
  35. //
  36. // peremenX
  37. //
  38. this.peremenX.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  39. this.peremenX.Location = new System.Drawing.Point(12, 70);
  40. this.peremenX.Name = "peremenX";
  41. this.peremenX.Size = new System.Drawing.Size(30, 22);
  42. this.peremenX.TabIndex = 0;
  43. this.peremenX.Text = "X=";
  44. //
  45. // znachX
  46. //
  47. this.znachX.Location = new System.Drawing.Point(48, 72);
  48. this.znachX.Name = "znachX";
  49. this.znachX.Size = new System.Drawing.Size(100, 20);
  50. this.znachX.TabIndex = 1;
  51. //
  52. // btnAnswer
  53. //
  54. this.btnAnswer.Location = new System.Drawing.Point(96, 224);
  55. this.btnAnswer.Name = "btnAnswer";
  56. this.btnAnswer.Size = new System.Drawing.Size(96, 41);
  57. this.btnAnswer.TabIndex = 3;
  58. this.btnAnswer.Text = "Посчитать";
  59. this.btnAnswer.UseVisualStyleBackColor = true;
  60. this.btnAnswer.Click += new System.EventHandler(this.btnAnswer_Click);
  61. //
  62. // pictureBox1
  63. //
  64. this.pictureBox1.Image = global::Pract4_project.Properties.Resources.Снимок_экрана__2_;
  65. this.pictureBox1.Location = new System.Drawing.Point(12, 12);
  66. this.pictureBox1.Name = "pictureBox1";
  67. this.pictureBox1.Size = new System.Drawing.Size(148, 41);
  68. this.pictureBox1.TabIndex = 4;
  69. this.pictureBox1.TabStop = false;
  70. //
  71. // textAnswer
  72. //
  73. this.textAnswer.Location = new System.Drawing.Point(16, 114);
  74. this.textAnswer.Multiline = true;
  75. this.textAnswer.Name = "textAnswer";
  76. this.textAnswer.Size = new System.Drawing.Size(259, 83);
  77. this.textAnswer.TabIndex = 5;
  78. //
  79. // Form1
  80. //
  81. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  82. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  83. this.ClientSize = new System.Drawing.Size(285, 280);
  84. this.Controls.Add(this.textAnswer);
  85. this.Controls.Add(this.pictureBox1);
  86. this.Controls.Add(this.btnAnswer);
  87. this.Controls.Add(this.znachX);
  88. this.Controls.Add(this.peremenX);
  89. this.Name = "Form1";
  90. this.Text = "Практическая №4";
  91. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
  92. this.ResumeLayout(false);
  93. this.PerformLayout();
  94. }
  95. #endregion
  96. private System.Windows.Forms.Label peremenX;
  97. private System.Windows.Forms.TextBox znachX;
  98. private System.Windows.Forms.Button btnAnswer;
  99. private System.Windows.Forms.PictureBox pictureBox1;
  100. private System.Windows.Forms.TextBox textAnswer;
  101. }
  102. }