Form1.Designer.cs 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. namespace testkonkurs1
  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.login = new System.Windows.Forms.TextBox();
  29. this.password = new System.Windows.Forms.TextBox();
  30. this.sing_in = new System.Windows.Forms.Button();
  31. this.panel1 = new System.Windows.Forms.Panel();
  32. this.adminCheck = new System.Windows.Forms.RadioButton();
  33. this.managerCheck = new System.Windows.Forms.RadioButton();
  34. this.panel1.SuspendLayout();
  35. this.SuspendLayout();
  36. //
  37. // login
  38. //
  39. this.login.Location = new System.Drawing.Point(96, 98);
  40. this.login.Name = "login";
  41. this.login.Size = new System.Drawing.Size(141, 20);
  42. this.login.TabIndex = 0;
  43. this.login.Text = "Введите логин";
  44. this.login.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  45. this.login.Enter += new System.EventHandler(this.login_Enter);
  46. this.login.Leave += new System.EventHandler(this.login_Leave);
  47. //
  48. // password
  49. //
  50. this.password.Location = new System.Drawing.Point(96, 134);
  51. this.password.Name = "password";
  52. this.password.Size = new System.Drawing.Size(140, 20);
  53. this.password.TabIndex = 1;
  54. this.password.Text = "Введите пароль";
  55. this.password.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  56. this.password.TextChanged += new System.EventHandler(this.password_TextChanged);
  57. this.password.Enter += new System.EventHandler(this.password_Enter);
  58. this.password.Leave += new System.EventHandler(this.password_Leave);
  59. //
  60. // sing_in
  61. //
  62. this.sing_in.Location = new System.Drawing.Point(110, 236);
  63. this.sing_in.Name = "sing_in";
  64. this.sing_in.Size = new System.Drawing.Size(102, 37);
  65. this.sing_in.TabIndex = 2;
  66. this.sing_in.Text = "Войти";
  67. this.sing_in.UseVisualStyleBackColor = true;
  68. this.sing_in.Click += new System.EventHandler(this.sing_in_Click);
  69. //
  70. // panel1
  71. //
  72. this.panel1.Controls.Add(this.managerCheck);
  73. this.panel1.Controls.Add(this.adminCheck);
  74. this.panel1.Location = new System.Drawing.Point(80, 174);
  75. this.panel1.Name = "panel1";
  76. this.panel1.Size = new System.Drawing.Size(213, 45);
  77. this.panel1.TabIndex = 3;
  78. //
  79. // adminCheck
  80. //
  81. this.adminCheck.AutoSize = true;
  82. this.adminCheck.Location = new System.Drawing.Point(0, 12);
  83. this.adminCheck.Name = "adminCheck";
  84. this.adminCheck.Size = new System.Drawing.Size(57, 17);
  85. this.adminCheck.TabIndex = 0;
  86. this.adminCheck.TabStop = true;
  87. this.adminCheck.Text = "админ";
  88. this.adminCheck.UseVisualStyleBackColor = true;
  89. //
  90. // managerCheck
  91. //
  92. this.managerCheck.AutoSize = true;
  93. this.managerCheck.Location = new System.Drawing.Point(109, 12);
  94. this.managerCheck.Name = "managerCheck";
  95. this.managerCheck.Size = new System.Drawing.Size(77, 17);
  96. this.managerCheck.TabIndex = 1;
  97. this.managerCheck.TabStop = true;
  98. this.managerCheck.Text = "менеджер";
  99. this.managerCheck.UseVisualStyleBackColor = true;
  100. //
  101. // Form1
  102. //
  103. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  104. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  105. this.ClientSize = new System.Drawing.Size(356, 405);
  106. this.Controls.Add(this.panel1);
  107. this.Controls.Add(this.sing_in);
  108. this.Controls.Add(this.password);
  109. this.Controls.Add(this.login);
  110. this.Name = "Form1";
  111. this.Text = "Авторизация";
  112. this.panel1.ResumeLayout(false);
  113. this.panel1.PerformLayout();
  114. this.ResumeLayout(false);
  115. this.PerformLayout();
  116. }
  117. #endregion
  118. private System.Windows.Forms.TextBox login;
  119. private System.Windows.Forms.TextBox password;
  120. private System.Windows.Forms.Button sing_in;
  121. private System.Windows.Forms.Panel panel1;
  122. private System.Windows.Forms.RadioButton managerCheck;
  123. private System.Windows.Forms.RadioButton adminCheck;
  124. }
  125. }