Form1.Designer.cs 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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.textBox1 = new System.Windows.Forms.TextBox();
  30. this.textBox2 = new System.Windows.Forms.TextBox();
  31. this.SuspendLayout();
  32. //
  33. // button1
  34. //
  35. this.button1.Location = new System.Drawing.Point(330, 314);
  36. this.button1.Name = "button1";
  37. this.button1.Size = new System.Drawing.Size(166, 61);
  38. this.button1.TabIndex = 0;
  39. this.button1.Text = "button1";
  40. this.button1.UseVisualStyleBackColor = true;
  41. this.button1.Click += new System.EventHandler(this.button1_Click);
  42. //
  43. // textBox1
  44. //
  45. this.textBox1.Location = new System.Drawing.Point(358, 139);
  46. this.textBox1.Name = "textBox1";
  47. this.textBox1.Size = new System.Drawing.Size(100, 20);
  48. this.textBox1.TabIndex = 1;
  49. //
  50. // textBox2
  51. //
  52. this.textBox2.Location = new System.Drawing.Point(358, 190);
  53. this.textBox2.Name = "textBox2";
  54. this.textBox2.Size = new System.Drawing.Size(100, 20);
  55. this.textBox2.TabIndex = 2;
  56. //
  57. // Form1
  58. //
  59. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  60. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  61. this.ClientSize = new System.Drawing.Size(800, 450);
  62. this.Controls.Add(this.textBox2);
  63. this.Controls.Add(this.textBox1);
  64. this.Controls.Add(this.button1);
  65. this.Name = "Form1";
  66. this.Text = "Form1";
  67. this.ResumeLayout(false);
  68. this.PerformLayout();
  69. }
  70. #endregion
  71. private System.Windows.Forms.Button button1;
  72. private System.Windows.Forms.TextBox textBox1;
  73. private System.Windows.Forms.TextBox textBox2;
  74. }
  75. }