LoginForm.Designer.cs 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  1. namespace SimpleDBViewer
  2. {
  3. partial class LoginForm
  4. {
  5. private System.ComponentModel.IContainer components = null;
  6. private System.Windows.Forms.Panel pnlSidebar;
  7. private System.Windows.Forms.Label lblLogo;
  8. private System.Windows.Forms.Label lblInfo;
  9. private System.Windows.Forms.Panel pnlContent;
  10. private System.Windows.Forms.Label lblTitle;
  11. private System.Windows.Forms.Label lblLogin;
  12. private System.Windows.Forms.TextBox txtLogin;
  13. private System.Windows.Forms.Label lblPassword;
  14. private System.Windows.Forms.TextBox txtPassword;
  15. private System.Windows.Forms.Label lblError;
  16. private System.Windows.Forms.Button btnLogin;
  17. private System.Windows.Forms.Button btnExit;
  18. protected override void Dispose(bool disposing)
  19. {
  20. if (disposing && (components != null))
  21. {
  22. components.Dispose();
  23. }
  24. base.Dispose(disposing);
  25. }
  26. private void InitializeComponent()
  27. {
  28. this.pnlSidebar = new System.Windows.Forms.Panel();
  29. this.lblInfo = new System.Windows.Forms.Label();
  30. this.lblLogo = new System.Windows.Forms.Label();
  31. this.pnlContent = new System.Windows.Forms.Panel();
  32. this.btnExit = new System.Windows.Forms.Button();
  33. this.btnLogin = new System.Windows.Forms.Button();
  34. this.lblError = new System.Windows.Forms.Label();
  35. this.txtPassword = new System.Windows.Forms.TextBox();
  36. this.lblPassword = new System.Windows.Forms.Label();
  37. this.txtLogin = new System.Windows.Forms.TextBox();
  38. this.lblLogin = new System.Windows.Forms.Label();
  39. this.lblTitle = new System.Windows.Forms.Label();
  40. this.pnlSidebar.SuspendLayout();
  41. this.pnlContent.SuspendLayout();
  42. this.SuspendLayout();
  43. //
  44. // pnlSidebar
  45. //
  46. this.pnlSidebar.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(58)))), ((int)(((byte)(84)))));
  47. this.pnlSidebar.Controls.Add(this.lblInfo);
  48. this.pnlSidebar.Controls.Add(this.lblLogo);
  49. this.pnlSidebar.Dock = System.Windows.Forms.DockStyle.Left;
  50. this.pnlSidebar.Location = new System.Drawing.Point(0, 0);
  51. this.pnlSidebar.Name = "pnlSidebar";
  52. this.pnlSidebar.Size = new System.Drawing.Size(260, 420);
  53. this.pnlSidebar.TabIndex = 0;
  54. //
  55. // lblInfo
  56. //
  57. this.lblInfo.Dock = System.Windows.Forms.DockStyle.Top;
  58. this.lblInfo.Font = new System.Drawing.Font("Segoe UI", 10.5F);
  59. this.lblInfo.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(226)))), ((int)(((byte)(232)))), ((int)(((byte)(240)))));
  60. this.lblInfo.Location = new System.Drawing.Point(0, 140);
  61. this.lblInfo.Name = "lblInfo";
  62. this.lblInfo.Padding = new System.Windows.Forms.Padding(28, 15, 28, 0);
  63. this.lblInfo.Size = new System.Drawing.Size(260, 110);
  64. this.lblInfo.TabIndex = 1;
  65. this.lblInfo.Text = "Учёт автошкол, водителей, экзаменов и удостоверений";
  66. this.lblInfo.TextAlign = System.Drawing.ContentAlignment.TopCenter;
  67. this.lblInfo.Click += new System.EventHandler(this.lblInfo_Click);
  68. //
  69. // lblLogo
  70. //
  71. this.lblLogo.Dock = System.Windows.Forms.DockStyle.Top;
  72. this.lblLogo.Font = new System.Drawing.Font("Segoe UI", 21F, System.Drawing.FontStyle.Bold);
  73. this.lblLogo.ForeColor = System.Drawing.Color.White;
  74. this.lblLogo.Location = new System.Drawing.Point(0, 0);
  75. this.lblLogo.Name = "lblLogo";
  76. this.lblLogo.Size = new System.Drawing.Size(260, 140);
  77. this.lblLogo.TabIndex = 0;
  78. this.lblLogo.Text = "АВТОШКОЛА";
  79. this.lblLogo.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  80. //
  81. // pnlContent
  82. //
  83. this.pnlContent.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(248)))), ((int)(((byte)(250)))), ((int)(((byte)(252)))));
  84. this.pnlContent.Controls.Add(this.btnExit);
  85. this.pnlContent.Controls.Add(this.btnLogin);
  86. this.pnlContent.Controls.Add(this.lblError);
  87. this.pnlContent.Controls.Add(this.txtPassword);
  88. this.pnlContent.Controls.Add(this.lblPassword);
  89. this.pnlContent.Controls.Add(this.txtLogin);
  90. this.pnlContent.Controls.Add(this.lblLogin);
  91. this.pnlContent.Controls.Add(this.lblTitle);
  92. this.pnlContent.Dock = System.Windows.Forms.DockStyle.Fill;
  93. this.pnlContent.Location = new System.Drawing.Point(260, 0);
  94. this.pnlContent.Name = "pnlContent";
  95. this.pnlContent.Padding = new System.Windows.Forms.Padding(60, 55, 60, 45);
  96. this.pnlContent.Size = new System.Drawing.Size(500, 420);
  97. this.pnlContent.TabIndex = 1;
  98. //
  99. // btnExit
  100. //
  101. this.btnExit.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(226)))), ((int)(((byte)(232)))), ((int)(((byte)(240)))));
  102. this.btnExit.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  103. this.btnExit.FlatAppearance.BorderSize = 0;
  104. this.btnExit.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  105. this.btnExit.Font = new System.Drawing.Font("Segoe UI", 10F, System.Drawing.FontStyle.Bold);
  106. this.btnExit.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(65)))), ((int)(((byte)(85)))));
  107. this.btnExit.Location = new System.Drawing.Point(230, 305);
  108. this.btnExit.Name = "btnExit";
  109. this.btnExit.Size = new System.Drawing.Size(150, 40);
  110. this.btnExit.TabIndex = 7;
  111. this.btnExit.Text = "Выход";
  112. this.btnExit.UseVisualStyleBackColor = false;
  113. this.btnExit.Click += new System.EventHandler(this.BtnExit_Click);
  114. //
  115. // btnLogin
  116. //
  117. this.btnLogin.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(37)))), ((int)(((byte)(99)))), ((int)(((byte)(235)))));
  118. this.btnLogin.FlatAppearance.BorderSize = 0;
  119. this.btnLogin.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  120. this.btnLogin.Font = new System.Drawing.Font("Segoe UI", 10F, System.Drawing.FontStyle.Bold);
  121. this.btnLogin.ForeColor = System.Drawing.Color.White;
  122. this.btnLogin.Location = new System.Drawing.Point(60, 305);
  123. this.btnLogin.Name = "btnLogin";
  124. this.btnLogin.Size = new System.Drawing.Size(150, 40);
  125. this.btnLogin.TabIndex = 6;
  126. this.btnLogin.Text = "Войти";
  127. this.btnLogin.UseVisualStyleBackColor = false;
  128. this.btnLogin.Click += new System.EventHandler(this.BtnLogin_Click);
  129. //
  130. // lblError
  131. //
  132. this.lblError.Font = new System.Drawing.Font("Segoe UI", 9F);
  133. this.lblError.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(185)))), ((int)(((byte)(28)))), ((int)(((byte)(28)))));
  134. this.lblError.Location = new System.Drawing.Point(60, 258);
  135. this.lblError.Name = "lblError";
  136. this.lblError.Size = new System.Drawing.Size(320, 34);
  137. this.lblError.TabIndex = 5;
  138. //
  139. // txtPassword
  140. //
  141. this.txtPassword.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  142. this.txtPassword.Font = new System.Drawing.Font("Segoe UI", 10F);
  143. this.txtPassword.Location = new System.Drawing.Point(60, 222);
  144. this.txtPassword.Name = "txtPassword";
  145. this.txtPassword.PasswordChar = '•';
  146. this.txtPassword.Size = new System.Drawing.Size(320, 25);
  147. this.txtPassword.TabIndex = 4;
  148. this.txtPassword.KeyDown += new System.Windows.Forms.KeyEventHandler(this.TxtPassword_KeyDown);
  149. //
  150. // lblPassword
  151. //
  152. this.lblPassword.AutoSize = true;
  153. this.lblPassword.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(65)))), ((int)(((byte)(85)))));
  154. this.lblPassword.Location = new System.Drawing.Point(60, 198);
  155. this.lblPassword.Name = "lblPassword";
  156. this.lblPassword.Size = new System.Drawing.Size(54, 17);
  157. this.lblPassword.TabIndex = 3;
  158. this.lblPassword.Text = "Пароль";
  159. //
  160. // txtLogin
  161. //
  162. this.txtLogin.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  163. this.txtLogin.Font = new System.Drawing.Font("Segoe UI", 10F);
  164. this.txtLogin.Location = new System.Drawing.Point(60, 146);
  165. this.txtLogin.Name = "txtLogin";
  166. this.txtLogin.Size = new System.Drawing.Size(320, 25);
  167. this.txtLogin.TabIndex = 2;
  168. //
  169. // lblLogin
  170. //
  171. this.lblLogin.AutoSize = true;
  172. this.lblLogin.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(65)))), ((int)(((byte)(85)))));
  173. this.lblLogin.Location = new System.Drawing.Point(60, 122);
  174. this.lblLogin.Name = "lblLogin";
  175. this.lblLogin.Size = new System.Drawing.Size(44, 17);
  176. this.lblLogin.TabIndex = 1;
  177. this.lblLogin.Text = "Логин";
  178. //
  179. // lblTitle
  180. //
  181. this.lblTitle.AutoSize = true;
  182. this.lblTitle.Font = new System.Drawing.Font("Segoe UI", 20F, System.Drawing.FontStyle.Bold);
  183. this.lblTitle.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(15)))), ((int)(((byte)(23)))), ((int)(((byte)(42)))));
  184. this.lblTitle.Location = new System.Drawing.Point(56, 58);
  185. this.lblTitle.Name = "lblTitle";
  186. this.lblTitle.Size = new System.Drawing.Size(219, 37);
  187. this.lblTitle.TabIndex = 0;
  188. this.lblTitle.Text = "Вход в систему";
  189. //
  190. // LoginForm
  191. //
  192. this.AcceptButton = this.btnLogin;
  193. this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);
  194. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  195. this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(248)))), ((int)(((byte)(250)))), ((int)(((byte)(252)))));
  196. this.CancelButton = this.btnExit;
  197. this.ClientSize = new System.Drawing.Size(760, 420);
  198. this.Controls.Add(this.pnlContent);
  199. this.Controls.Add(this.pnlSidebar);
  200. this.Font = new System.Drawing.Font("Segoe UI", 9.5F);
  201. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  202. this.MaximizeBox = false;
  203. this.MinimizeBox = false;
  204. this.Name = "LoginForm";
  205. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  206. this.Text = "Авторизация | Автошкола";
  207. this.pnlSidebar.ResumeLayout(false);
  208. this.pnlContent.ResumeLayout(false);
  209. this.pnlContent.PerformLayout();
  210. this.ResumeLayout(false);
  211. }
  212. }
  213. }