Form1.Designer.cs 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. 
  2. namespace WindowsFormsApp1
  3. {
  4. partial class Login
  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.button1 = new System.Windows.Forms.Button();
  31. this.textBox1 = new System.Windows.Forms.TextBox();
  32. this.textBox2 = new System.Windows.Forms.TextBox();
  33. this.label2 = new System.Windows.Forms.Label();
  34. this.label3 = new System.Windows.Forms.Label();
  35. this.SuspendLayout();
  36. //
  37. // label1
  38. //
  39. this.label1.AutoSize = true;
  40. this.label1.Font = new System.Drawing.Font("Times New Roman", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  41. this.label1.Location = new System.Drawing.Point(45, 9);
  42. this.label1.Name = "label1";
  43. this.label1.Size = new System.Drawing.Size(212, 23);
  44. this.label1.TabIndex = 0;
  45. this.label1.Text = "Авторизация в системе";
  46. this.label1.UseWaitCursor = true;
  47. //
  48. // button1
  49. //
  50. this.button1.Font = new System.Drawing.Font("Times New Roman", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  51. this.button1.Location = new System.Drawing.Point(38, 238);
  52. this.button1.Name = "button1";
  53. this.button1.Size = new System.Drawing.Size(230, 52);
  54. this.button1.TabIndex = 1;
  55. this.button1.Text = "Вход";
  56. this.button1.UseVisualStyleBackColor = true;
  57. this.button1.UseWaitCursor = true;
  58. this.button1.Click += new System.EventHandler(this.button1_Click);
  59. //
  60. // textBox1
  61. //
  62. this.textBox1.Font = new System.Drawing.Font("Times New Roman", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  63. this.textBox1.Location = new System.Drawing.Point(38, 98);
  64. this.textBox1.Name = "textBox1";
  65. this.textBox1.Size = new System.Drawing.Size(230, 32);
  66. this.textBox1.TabIndex = 2;
  67. this.textBox1.UseWaitCursor = true;
  68. //
  69. // textBox2
  70. //
  71. this.textBox2.Font = new System.Drawing.Font("Times New Roman", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  72. this.textBox2.Location = new System.Drawing.Point(39, 160);
  73. this.textBox2.Name = "textBox2";
  74. this.textBox2.Size = new System.Drawing.Size(229, 32);
  75. this.textBox2.TabIndex = 3;
  76. this.textBox2.UseWaitCursor = true;
  77. //
  78. // label2
  79. //
  80. this.label2.AutoSize = true;
  81. this.label2.Font = new System.Drawing.Font("Times New Roman", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  82. this.label2.Location = new System.Drawing.Point(35, 134);
  83. this.label2.Name = "label2";
  84. this.label2.Size = new System.Drawing.Size(75, 23);
  85. this.label2.TabIndex = 4;
  86. this.label2.Text = "Пароль";
  87. this.label2.UseWaitCursor = true;
  88. //
  89. // label3
  90. //
  91. this.label3.AutoSize = true;
  92. this.label3.Font = new System.Drawing.Font("Times New Roman", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  93. this.label3.Location = new System.Drawing.Point(35, 72);
  94. this.label3.Name = "label3";
  95. this.label3.Size = new System.Drawing.Size(65, 23);
  96. this.label3.TabIndex = 5;
  97. this.label3.Text = "Логин";
  98. this.label3.UseWaitCursor = true;
  99. //
  100. // Login
  101. //
  102. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
  103. this.ClientSize = new System.Drawing.Size(309, 327);
  104. this.ControlBox = false;
  105. this.Controls.Add(this.label3);
  106. this.Controls.Add(this.label2);
  107. this.Controls.Add(this.textBox2);
  108. this.Controls.Add(this.textBox1);
  109. this.Controls.Add(this.button1);
  110. this.Controls.Add(this.label1);
  111. this.Cursor = System.Windows.Forms.Cursors.WaitCursor;
  112. this.Name = "Login";
  113. this.Text = "Авторизация";
  114. this.UseWaitCursor = true;
  115. this.ResumeLayout(false);
  116. this.PerformLayout();
  117. }
  118. #endregion
  119. private System.Windows.Forms.Label label1;
  120. private System.Windows.Forms.Button button1;
  121. private System.Windows.Forms.TextBox textBox1;
  122. private System.Windows.Forms.TextBox textBox2;
  123. private System.Windows.Forms.Label label2;
  124. private System.Windows.Forms.Label label3;
  125. }
  126. }