Form2.Designer.cs 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. namespace pract
  2. {
  3. partial class Form2
  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. this.textBox1 = new System.Windows.Forms.TextBox();
  29. this.label1 = new System.Windows.Forms.Label();
  30. this.label2 = new System.Windows.Forms.Label();
  31. this.textBox2 = new System.Windows.Forms.TextBox();
  32. this.button2 = new System.Windows.Forms.Button();
  33. this.SuspendLayout();
  34. //
  35. // textBox1
  36. //
  37. this.textBox1.Location = new System.Drawing.Point(114, 63);
  38. this.textBox1.Name = "textBox1";
  39. this.textBox1.Size = new System.Drawing.Size(247, 22);
  40. this.textBox1.TabIndex = 0;
  41. //
  42. // label1
  43. //
  44. this.label1.AutoSize = true;
  45. this.label1.Location = new System.Drawing.Point(111, 31);
  46. this.label1.Name = "label1";
  47. this.label1.Size = new System.Drawing.Size(45, 16);
  48. this.label1.TabIndex = 1;
  49. this.label1.Text = "логин";
  50. //
  51. // label2
  52. //
  53. this.label2.AutoSize = true;
  54. this.label2.Location = new System.Drawing.Point(111, 102);
  55. this.label2.Name = "label2";
  56. this.label2.Size = new System.Drawing.Size(54, 16);
  57. this.label2.TabIndex = 3;
  58. this.label2.Text = "пароль";
  59. //
  60. // textBox2
  61. //
  62. this.textBox2.Location = new System.Drawing.Point(114, 134);
  63. this.textBox2.Name = "textBox2";
  64. this.textBox2.Size = new System.Drawing.Size(247, 22);
  65. this.textBox2.TabIndex = 2;
  66. //
  67. // button2
  68. //
  69. this.button2.Location = new System.Drawing.Point(167, 188);
  70. this.button2.Name = "button2";
  71. this.button2.Size = new System.Drawing.Size(133, 37);
  72. this.button2.TabIndex = 5;
  73. this.button2.Text = "вход";
  74. this.button2.UseVisualStyleBackColor = true;
  75. this.button2.Click += new System.EventHandler(this.button2_Click);
  76. //
  77. // Form2
  78. //
  79. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
  80. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  81. this.ClientSize = new System.Drawing.Size(476, 299);
  82. this.Controls.Add(this.button2);
  83. this.Controls.Add(this.label2);
  84. this.Controls.Add(this.textBox2);
  85. this.Controls.Add(this.label1);
  86. this.Controls.Add(this.textBox1);
  87. this.Name = "Form2";
  88. this.Text = "Form2";
  89. this.ResumeLayout(false);
  90. this.PerformLayout();
  91. }
  92. #endregion
  93. private System.Windows.Forms.TextBox textBox1;
  94. private System.Windows.Forms.Label label1;
  95. private System.Windows.Forms.Label label2;
  96. private System.Windows.Forms.TextBox textBox2;
  97. private System.Windows.Forms.Button button2;
  98. }
  99. }