Form3.Designer.cs 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. namespace WindowsFormsAppGrishina
  2. {
  3. partial class Form3
  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.textBox2 = new System.Windows.Forms.TextBox();
  30. this.button1 = new System.Windows.Forms.Button();
  31. this.button2 = new System.Windows.Forms.Button();
  32. this.label1 = new System.Windows.Forms.Label();
  33. this.label2 = new System.Windows.Forms.Label();
  34. this.SuspendLayout();
  35. //
  36. // textBox1
  37. //
  38. this.textBox1.Location = new System.Drawing.Point(346, 133);
  39. this.textBox1.Name = "textBox1";
  40. this.textBox1.Size = new System.Drawing.Size(100, 20);
  41. this.textBox1.TabIndex = 0;
  42. this.textBox1.Text = "Логин";
  43. this.textBox1.TextChanged += new System.EventHandler(this.textBox1_TextChanged);
  44. //
  45. // textBox2
  46. //
  47. this.textBox2.Location = new System.Drawing.Point(346, 182);
  48. this.textBox2.Name = "textBox2";
  49. this.textBox2.Size = new System.Drawing.Size(100, 20);
  50. this.textBox2.TabIndex = 1;
  51. this.textBox2.Text = "Пароль";
  52. this.textBox2.TextChanged += new System.EventHandler(this.PasswordBox_TextChanged);
  53. //
  54. // button1
  55. //
  56. this.button1.Location = new System.Drawing.Point(346, 242);
  57. this.button1.Name = "button1";
  58. this.button1.Size = new System.Drawing.Size(89, 31);
  59. this.button1.TabIndex = 2;
  60. this.button1.Text = "Вход";
  61. this.button1.UseVisualStyleBackColor = true;
  62. this.button1.Click += new System.EventHandler(this.button1_Click);
  63. //
  64. // button2
  65. //
  66. this.button2.Location = new System.Drawing.Point(346, 302);
  67. this.button2.Name = "button2";
  68. this.button2.Size = new System.Drawing.Size(96, 32);
  69. this.button2.TabIndex = 3;
  70. this.button2.Text = "Регистрация";
  71. this.button2.UseVisualStyleBackColor = true;
  72. this.button2.Click += new System.EventHandler(this.button2_Click);
  73. //
  74. // label1
  75. //
  76. this.label1.AutoSize = true;
  77. this.label1.Location = new System.Drawing.Point(275, 139);
  78. this.label1.Name = "label1";
  79. this.label1.Size = new System.Drawing.Size(38, 13);
  80. this.label1.TabIndex = 4;
  81. this.label1.Text = "Логин";
  82. this.label1.Click += new System.EventHandler(this.label1_Click);
  83. //
  84. // label2
  85. //
  86. this.label2.AutoSize = true;
  87. this.label2.Location = new System.Drawing.Point(275, 189);
  88. this.label2.Name = "label2";
  89. this.label2.Size = new System.Drawing.Size(45, 13);
  90. this.label2.TabIndex = 5;
  91. this.label2.Text = "Пароль";
  92. this.label2.Click += new System.EventHandler(this.label2_Click);
  93. //
  94. // Form3
  95. //
  96. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  97. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  98. this.ClientSize = new System.Drawing.Size(800, 450);
  99. this.Controls.Add(this.label2);
  100. this.Controls.Add(this.label1);
  101. this.Controls.Add(this.button2);
  102. this.Controls.Add(this.button1);
  103. this.Controls.Add(this.textBox2);
  104. this.Controls.Add(this.textBox1);
  105. this.Name = "Form3";
  106. this.Text = "Form3";
  107. this.ResumeLayout(false);
  108. this.PerformLayout();
  109. }
  110. #endregion
  111. private System.Windows.Forms.TextBox textBox1;
  112. private System.Windows.Forms.TextBox textBox2;
  113. private System.Windows.Forms.Button button1;
  114. private System.Windows.Forms.Button button2;
  115. private System.Windows.Forms.Label label1;
  116. private System.Windows.Forms.Label label2;
  117. }
  118. }