LoginForm.Designer.cs 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. namespace WindowsFormsApp1
  2. {
  3. partial class LoginForm
  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.txtLogin = new System.Windows.Forms.TextBox();
  29. this.txtPassword = new System.Windows.Forms.TextBox();
  30. this.btnLogin = new System.Windows.Forms.Button();
  31. this.label1 = new System.Windows.Forms.Label();
  32. this.label2 = new System.Windows.Forms.Label();
  33. this.label3 = new System.Windows.Forms.Label();
  34. this.SuspendLayout();
  35. //
  36. // txtLogin
  37. //
  38. this.txtLogin.Location = new System.Drawing.Point(301, 151);
  39. this.txtLogin.Name = "txtLogin";
  40. this.txtLogin.Size = new System.Drawing.Size(214, 22);
  41. this.txtLogin.TabIndex = 0;
  42. //
  43. // txtPassword
  44. //
  45. this.txtPassword.Location = new System.Drawing.Point(301, 200);
  46. this.txtPassword.Name = "txtPassword";
  47. this.txtPassword.Size = new System.Drawing.Size(214, 22);
  48. this.txtPassword.TabIndex = 1;
  49. //
  50. // btnLogin
  51. //
  52. this.btnLogin.Location = new System.Drawing.Point(301, 238);
  53. this.btnLogin.Name = "btnLogin";
  54. this.btnLogin.Size = new System.Drawing.Size(214, 25);
  55. this.btnLogin.TabIndex = 2;
  56. this.btnLogin.Text = "Войти";
  57. this.btnLogin.UseVisualStyleBackColor = true;
  58. this.btnLogin.Click += new System.EventHandler(this.btnLogin_Click);
  59. //
  60. // label1
  61. //
  62. this.label1.AutoSize = true;
  63. this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 13.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  64. this.label1.Location = new System.Drawing.Point(373, 95);
  65. this.label1.Name = "label1";
  66. this.label1.Size = new System.Drawing.Size(68, 29);
  67. this.label1.TabIndex = 3;
  68. this.label1.Text = "Вход";
  69. //
  70. // label2
  71. //
  72. this.label2.AutoSize = true;
  73. this.label2.Location = new System.Drawing.Point(298, 132);
  74. this.label2.Name = "label2";
  75. this.label2.Size = new System.Drawing.Size(46, 16);
  76. this.label2.TabIndex = 4;
  77. this.label2.Text = "Логин";
  78. //
  79. // label3
  80. //
  81. this.label3.AutoSize = true;
  82. this.label3.Location = new System.Drawing.Point(298, 181);
  83. this.label3.Name = "label3";
  84. this.label3.Size = new System.Drawing.Size(56, 16);
  85. this.label3.TabIndex = 5;
  86. this.label3.Text = "Пароль";
  87. //
  88. // LoginForm
  89. //
  90. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
  91. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  92. this.ClientSize = new System.Drawing.Size(800, 450);
  93. this.Controls.Add(this.label3);
  94. this.Controls.Add(this.label2);
  95. this.Controls.Add(this.label1);
  96. this.Controls.Add(this.btnLogin);
  97. this.Controls.Add(this.txtPassword);
  98. this.Controls.Add(this.txtLogin);
  99. this.Name = "LoginForm";
  100. this.Text = "Form2";
  101. this.ResumeLayout(false);
  102. this.PerformLayout();
  103. }
  104. #endregion
  105. private System.Windows.Forms.TextBox txtLogin;
  106. private System.Windows.Forms.TextBox txtPassword;
  107. private System.Windows.Forms.Button btnLogin;
  108. private System.Windows.Forms.Label label1;
  109. private System.Windows.Forms.Label label2;
  110. private System.Windows.Forms.Label label3;
  111. }
  112. }