Lab1.Designer.cs 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. namespace WindowsFormsApp6
  2. {
  3. partial class Lab1
  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. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Lab1));
  29. this.pictureBox1 = new System.Windows.Forms.PictureBox();
  30. this.tbInputK = new System.Windows.Forms.TextBox();
  31. this.label1 = new System.Windows.Forms.Label();
  32. this.btnCalculate = new System.Windows.Forms.Button();
  33. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
  34. this.SuspendLayout();
  35. //
  36. // pictureBox1
  37. //
  38. this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
  39. this.pictureBox1.Location = new System.Drawing.Point(12, 12);
  40. this.pictureBox1.Name = "pictureBox1";
  41. this.pictureBox1.Size = new System.Drawing.Size(330, 66);
  42. this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  43. this.pictureBox1.TabIndex = 0;
  44. this.pictureBox1.TabStop = false;
  45. //
  46. // tbInputK
  47. //
  48. this.tbInputK.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  49. this.tbInputK.Location = new System.Drawing.Point(42, 93);
  50. this.tbInputK.Name = "tbInputK";
  51. this.tbInputK.Size = new System.Drawing.Size(100, 26);
  52. this.tbInputK.TabIndex = 1;
  53. //
  54. // label1
  55. //
  56. this.label1.AutoSize = true;
  57. this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  58. this.label1.Location = new System.Drawing.Point(13, 96);
  59. this.label1.Name = "label1";
  60. this.label1.Size = new System.Drawing.Size(23, 20);
  61. this.label1.TabIndex = 2;
  62. this.label1.Text = "K:";
  63. //
  64. // btnCalculate
  65. //
  66. this.btnCalculate.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  67. this.btnCalculate.Location = new System.Drawing.Point(12, 143);
  68. this.btnCalculate.Name = "btnCalculate";
  69. this.btnCalculate.Size = new System.Drawing.Size(153, 31);
  70. this.btnCalculate.TabIndex = 3;
  71. this.btnCalculate.Text = "Вычислить ";
  72. this.btnCalculate.UseVisualStyleBackColor = true;
  73. this.btnCalculate.Click += new System.EventHandler(this.btnCalculate_Click);
  74. //
  75. // Lab1
  76. //
  77. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  78. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  79. this.ClientSize = new System.Drawing.Size(354, 186);
  80. this.Controls.Add(this.btnCalculate);
  81. this.Controls.Add(this.label1);
  82. this.Controls.Add(this.tbInputK);
  83. this.Controls.Add(this.pictureBox1);
  84. this.Name = "Lab1";
  85. this.Text = "Lab1";
  86. this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.Lab1_FormClosed);
  87. this.Load += new System.EventHandler(this.Lab1_Load);
  88. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
  89. this.ResumeLayout(false);
  90. this.PerformLayout();
  91. }
  92. #endregion
  93. private System.Windows.Forms.PictureBox pictureBox1;
  94. private System.Windows.Forms.TextBox tbInputK;
  95. private System.Windows.Forms.Label label1;
  96. private System.Windows.Forms.Button btnCalculate;
  97. }
  98. }