Form1.Designer.cs 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. namespace konkursTest14
  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.LoginT = new System.Windows.Forms.TextBox();
  29. this.Password = new System.Windows.Forms.TextBox();
  30. this.login = new System.Windows.Forms.Button();
  31. this.label1 = new System.Windows.Forms.Label();
  32. this.panel1 = new System.Windows.Forms.Panel();
  33. this.radioButton1 = new System.Windows.Forms.RadioButton();
  34. this.radioButton2 = new System.Windows.Forms.RadioButton();
  35. this.panel1.SuspendLayout();
  36. this.SuspendLayout();
  37. //
  38. // LoginT
  39. //
  40. this.LoginT.Location = new System.Drawing.Point(79, 107);
  41. this.LoginT.Name = "LoginT";
  42. this.LoginT.Size = new System.Drawing.Size(145, 20);
  43. this.LoginT.TabIndex = 0;
  44. this.LoginT.Text = "Введите логин";
  45. this.LoginT.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  46. this.LoginT.Enter += new System.EventHandler(this.LoginT_Enter);
  47. this.LoginT.Leave += new System.EventHandler(this.LoginT_Leave);
  48. //
  49. // Password
  50. //
  51. this.Password.Location = new System.Drawing.Point(79, 145);
  52. this.Password.Name = "Password";
  53. this.Password.Size = new System.Drawing.Size(145, 20);
  54. this.Password.TabIndex = 1;
  55. this.Password.Text = "Введите пароль";
  56. this.Password.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  57. this.Password.Enter += new System.EventHandler(this.Password_Enter);
  58. this.Password.Leave += new System.EventHandler(this.Password_Leave);
  59. //
  60. // login
  61. //
  62. this.login.Location = new System.Drawing.Point(78, 248);
  63. this.login.Name = "login";
  64. this.login.Size = new System.Drawing.Size(145, 30);
  65. this.login.TabIndex = 2;
  66. this.login.Text = "Войти";
  67. this.login.UseVisualStyleBackColor = true;
  68. this.login.Click += new System.EventHandler(this.login_Click);
  69. //
  70. // label1
  71. //
  72. this.label1.AutoSize = true;
  73. this.label1.Location = new System.Drawing.Point(105, 68);
  74. this.label1.Name = "label1";
  75. this.label1.Size = new System.Drawing.Size(95, 13);
  76. this.label1.TabIndex = 3;
  77. this.label1.Text = "Авторизируйтесь";
  78. //
  79. // panel1
  80. //
  81. this.panel1.Controls.Add(this.radioButton2);
  82. this.panel1.Controls.Add(this.radioButton1);
  83. this.panel1.Location = new System.Drawing.Point(47, 171);
  84. this.panel1.Name = "panel1";
  85. this.panel1.Size = new System.Drawing.Size(212, 58);
  86. this.panel1.TabIndex = 4;
  87. //
  88. // radioButton1
  89. //
  90. this.radioButton1.AutoSize = true;
  91. this.radioButton1.Checked = true;
  92. this.radioButton1.Location = new System.Drawing.Point(19, 20);
  93. this.radioButton1.Name = "radioButton1";
  94. this.radioButton1.Size = new System.Drawing.Size(58, 17);
  95. this.radioButton1.TabIndex = 0;
  96. this.radioButton1.TabStop = true;
  97. this.radioButton1.Text = "Админ";
  98. this.radioButton1.UseVisualStyleBackColor = true;
  99. //
  100. // radioButton2
  101. //
  102. this.radioButton2.AutoSize = true;
  103. this.radioButton2.Location = new System.Drawing.Point(114, 20);
  104. this.radioButton2.Name = "radioButton2";
  105. this.radioButton2.Size = new System.Drawing.Size(78, 17);
  106. this.radioButton2.TabIndex = 1;
  107. this.radioButton2.Text = "Менеджер";
  108. this.radioButton2.UseVisualStyleBackColor = true;
  109. //
  110. // Form1
  111. //
  112. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  113. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  114. this.ClientSize = new System.Drawing.Size(308, 316);
  115. this.Controls.Add(this.panel1);
  116. this.Controls.Add(this.label1);
  117. this.Controls.Add(this.login);
  118. this.Controls.Add(this.Password);
  119. this.Controls.Add(this.LoginT);
  120. this.Name = "Form1";
  121. this.Text = "Авторизация";
  122. this.panel1.ResumeLayout(false);
  123. this.panel1.PerformLayout();
  124. this.ResumeLayout(false);
  125. this.PerformLayout();
  126. }
  127. #endregion
  128. private System.Windows.Forms.TextBox LoginT;
  129. private System.Windows.Forms.TextBox Password;
  130. private System.Windows.Forms.Button login;
  131. private System.Windows.Forms.Label label1;
  132. private System.Windows.Forms.Panel panel1;
  133. private System.Windows.Forms.RadioButton radioButton2;
  134. private System.Windows.Forms.RadioButton radioButton1;
  135. }
  136. }