Form1.Designer.cs 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. namespace TestsManipulate
  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.label1 = new System.Windows.Forms.Label();
  29. this.textBox1 = new System.Windows.Forms.TextBox();
  30. this.textBox2 = new System.Windows.Forms.TextBox();
  31. this.button1 = new System.Windows.Forms.Button();
  32. this.label2 = new System.Windows.Forms.Label();
  33. this.label3 = new System.Windows.Forms.Label();
  34. this.SuspendLayout();
  35. //
  36. // label1
  37. //
  38. this.label1.AutoSize = true;
  39. this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  40. this.label1.Location = new System.Drawing.Point(133, 39);
  41. this.label1.Name = "label1";
  42. this.label1.Size = new System.Drawing.Size(61, 25);
  43. this.label1.TabIndex = 0;
  44. this.label1.Text = "Вход";
  45. //
  46. // textBox1
  47. //
  48. this.textBox1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  49. this.textBox1.Location = new System.Drawing.Point(85, 95);
  50. this.textBox1.MaxLength = 50;
  51. this.textBox1.Name = "textBox1";
  52. this.textBox1.Size = new System.Drawing.Size(162, 26);
  53. this.textBox1.TabIndex = 1;
  54. //
  55. // textBox2
  56. //
  57. this.textBox2.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  58. this.textBox2.Location = new System.Drawing.Point(88, 156);
  59. this.textBox2.MaxLength = 50;
  60. this.textBox2.Name = "textBox2";
  61. this.textBox2.PasswordChar = '*';
  62. this.textBox2.Size = new System.Drawing.Size(162, 26);
  63. this.textBox2.TabIndex = 2;
  64. //
  65. // button1
  66. //
  67. this.button1.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  68. this.button1.Location = new System.Drawing.Point(111, 198);
  69. this.button1.Name = "button1";
  70. this.button1.Size = new System.Drawing.Size(109, 43);
  71. this.button1.TabIndex = 3;
  72. this.button1.Text = "Войти";
  73. this.button1.UseVisualStyleBackColor = true;
  74. this.button1.Click += new System.EventHandler(this.Login);
  75. //
  76. // label2
  77. //
  78. this.label2.AutoSize = true;
  79. this.label2.Location = new System.Drawing.Point(85, 76);
  80. this.label2.Name = "label2";
  81. this.label2.Size = new System.Drawing.Size(38, 13);
  82. this.label2.TabIndex = 4;
  83. this.label2.Text = "Логин";
  84. //
  85. // label3
  86. //
  87. this.label3.AutoSize = true;
  88. this.label3.Location = new System.Drawing.Point(88, 140);
  89. this.label3.Name = "label3";
  90. this.label3.Size = new System.Drawing.Size(45, 13);
  91. this.label3.TabIndex = 5;
  92. this.label3.Text = "Пароль";
  93. //
  94. // Form1
  95. //
  96. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  97. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  98. this.ClientSize = new System.Drawing.Size(333, 306);
  99. this.Controls.Add(this.label3);
  100. this.Controls.Add(this.label2);
  101. this.Controls.Add(this.button1);
  102. this.Controls.Add(this.textBox2);
  103. this.Controls.Add(this.textBox1);
  104. this.Controls.Add(this.label1);
  105. this.Name = "Form1";
  106. this.Text = "Логин";
  107. this.ResumeLayout(false);
  108. this.PerformLayout();
  109. }
  110. #endregion
  111. private System.Windows.Forms.Label label1;
  112. private System.Windows.Forms.TextBox textBox1;
  113. private System.Windows.Forms.TextBox textBox2;
  114. private System.Windows.Forms.Button button1;
  115. private System.Windows.Forms.Label label2;
  116. private System.Windows.Forms.Label label3;
  117. }
  118. }