FormMain.Designer.cs 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. namespace WindowsFormsAppUP02._02Alekseev2
  2. {
  3. partial class FormMain
  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.txtValueX = new System.Windows.Forms.TextBox();
  29. this.txtValueY = new System.Windows.Forms.TextBox();
  30. this.txtValueZ = new System.Windows.Forms.TextBox();
  31. this.btnResultValue = new System.Windows.Forms.Button();
  32. this.txtValueT = new System.Windows.Forms.TextBox();
  33. this.SuspendLayout();
  34. //
  35. // txtValueX
  36. //
  37. this.txtValueX.Location = new System.Drawing.Point(160, 123);
  38. this.txtValueX.Margin = new System.Windows.Forms.Padding(2);
  39. this.txtValueX.Name = "txtValueX";
  40. this.txtValueX.Size = new System.Drawing.Size(210, 20);
  41. this.txtValueX.TabIndex = 0;
  42. //
  43. // txtValueY
  44. //
  45. this.txtValueY.Location = new System.Drawing.Point(160, 163);
  46. this.txtValueY.Margin = new System.Windows.Forms.Padding(2);
  47. this.txtValueY.Name = "txtValueY";
  48. this.txtValueY.Size = new System.Drawing.Size(210, 20);
  49. this.txtValueY.TabIndex = 1;
  50. //
  51. // txtValueZ
  52. //
  53. this.txtValueZ.Location = new System.Drawing.Point(160, 203);
  54. this.txtValueZ.Margin = new System.Windows.Forms.Padding(2);
  55. this.txtValueZ.Name = "txtValueZ";
  56. this.txtValueZ.Size = new System.Drawing.Size(210, 20);
  57. this.txtValueZ.TabIndex = 2;
  58. //
  59. // btnResultValue
  60. //
  61. this.btnResultValue.Location = new System.Drawing.Point(468, 162);
  62. this.btnResultValue.Margin = new System.Windows.Forms.Padding(2);
  63. this.btnResultValue.Name = "btnResultValue";
  64. this.btnResultValue.Size = new System.Drawing.Size(208, 19);
  65. this.btnResultValue.TabIndex = 3;
  66. this.btnResultValue.Text = "Рассчитать значение t";
  67. this.btnResultValue.UseVisualStyleBackColor = true;
  68. this.btnResultValue.Click += new System.EventHandler(this.btnResultValueClick);
  69. //
  70. // txtValueT
  71. //
  72. this.txtValueT.Location = new System.Drawing.Point(160, 240);
  73. this.txtValueT.Margin = new System.Windows.Forms.Padding(2);
  74. this.txtValueT.Name = "txtValueT";
  75. this.txtValueT.Size = new System.Drawing.Size(210, 20);
  76. this.txtValueT.TabIndex = 4;
  77. //
  78. // FormMain
  79. //
  80. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  81. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  82. this.ClientSize = new System.Drawing.Size(993, 366);
  83. this.Controls.Add(this.txtValueT);
  84. this.Controls.Add(this.btnResultValue);
  85. this.Controls.Add(this.txtValueZ);
  86. this.Controls.Add(this.txtValueY);
  87. this.Controls.Add(this.txtValueX);
  88. this.Margin = new System.Windows.Forms.Padding(2);
  89. this.Name = "FormMain";
  90. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  91. this.Text = "Главная форма программы";
  92. this.Load += new System.EventHandler(this.Form1Load);
  93. this.ResumeLayout(false);
  94. this.PerformLayout();
  95. }
  96. #endregion
  97. private System.Windows.Forms.TextBox txtValueX;
  98. private System.Windows.Forms.TextBox txtValueY;
  99. private System.Windows.Forms.TextBox txtValueZ;
  100. private System.Windows.Forms.Button btnResultValue;
  101. private System.Windows.Forms.TextBox txtValueT;
  102. }
  103. }