FormAuthorization.Designer.cs 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. 
  2. namespace KadroviYshot
  3. {
  4. partial class FormAuthorization
  5. {
  6. /// <summary>
  7. /// Обязательная переменная конструктора.
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  10. /// <summary>
  11. /// Освободить все используемые ресурсы.
  12. /// </summary>
  13. /// <param name="disposing">истинно, если управляемый ресурс должен быть удален; иначе ложно.</param>
  14. protected override void Dispose(bool disposing)
  15. {
  16. if (disposing && (components != null))
  17. {
  18. components.Dispose();
  19. }
  20. base.Dispose(disposing);
  21. }
  22. #region Код, автоматически созданный конструктором форм Windows
  23. /// <summary>
  24. /// Требуемый метод для поддержки конструктора — не изменяйте
  25. /// содержимое этого метода с помощью редактора кода.
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. this.label1 = new System.Windows.Forms.Label();
  30. this.label2 = new System.Windows.Forms.Label();
  31. this.textBoxLogin = new System.Windows.Forms.TextBox();
  32. this.textBoxPassword = new System.Windows.Forms.TextBox();
  33. this.btnEnter = new System.Windows.Forms.Button();
  34. this.SuspendLayout();
  35. //
  36. // label1
  37. //
  38. this.label1.AutoSize = true;
  39. this.label1.Location = new System.Drawing.Point(137, 115);
  40. this.label1.Name = "label1";
  41. this.label1.Size = new System.Drawing.Size(38, 13);
  42. this.label1.TabIndex = 0;
  43. this.label1.Text = "Логин";
  44. //
  45. // label2
  46. //
  47. this.label2.AutoSize = true;
  48. this.label2.Location = new System.Drawing.Point(137, 146);
  49. this.label2.Name = "label2";
  50. this.label2.Size = new System.Drawing.Size(45, 13);
  51. this.label2.TabIndex = 1;
  52. this.label2.Text = "Пароль";
  53. //
  54. // textBoxLogin
  55. //
  56. this.textBoxLogin.Location = new System.Drawing.Point(213, 107);
  57. this.textBoxLogin.Name = "textBoxLogin";
  58. this.textBoxLogin.Size = new System.Drawing.Size(100, 20);
  59. this.textBoxLogin.TabIndex = 2;
  60. //
  61. // textBoxPassword
  62. //
  63. this.textBoxPassword.Location = new System.Drawing.Point(213, 139);
  64. this.textBoxPassword.Name = "textBoxPassword";
  65. this.textBoxPassword.Size = new System.Drawing.Size(100, 20);
  66. this.textBoxPassword.TabIndex = 3;
  67. //
  68. // btnEnter
  69. //
  70. this.btnEnter.Location = new System.Drawing.Point(238, 198);
  71. this.btnEnter.Name = "btnEnter";
  72. this.btnEnter.Size = new System.Drawing.Size(75, 23);
  73. this.btnEnter.TabIndex = 4;
  74. this.btnEnter.Text = "Войти";
  75. this.btnEnter.UseVisualStyleBackColor = true;
  76. this.btnEnter.Click += new System.EventHandler(this.btnEnter_Click);
  77. //
  78. // FormAuthorization
  79. //
  80. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  81. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  82. this.ClientSize = new System.Drawing.Size(800, 450);
  83. this.Controls.Add(this.btnEnter);
  84. this.Controls.Add(this.textBoxPassword);
  85. this.Controls.Add(this.textBoxLogin);
  86. this.Controls.Add(this.label2);
  87. this.Controls.Add(this.label1);
  88. this.Name = "FormAuthorization";
  89. this.Text = "Авторизация";
  90. this.Load += new System.EventHandler(this.FormAuthorization_Load);
  91. this.ResumeLayout(false);
  92. this.PerformLayout();
  93. }
  94. #endregion
  95. private System.Windows.Forms.Label label1;
  96. private System.Windows.Forms.Label label2;
  97. private System.Windows.Forms.TextBox textBoxLogin;
  98. private System.Windows.Forms.TextBox textBoxPassword;
  99. private System.Windows.Forms.Button btnEnter;
  100. }
  101. }