Form1.Designer.cs 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. 
  2. namespace CherDemEkz
  3. {
  4. partial class Form1
  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.button1 = new System.Windows.Forms.Button();
  30. this.label1 = new System.Windows.Forms.Label();
  31. this.label2 = new System.Windows.Forms.Label();
  32. this.label3 = new System.Windows.Forms.Label();
  33. this.Login = new System.Windows.Forms.TextBox();
  34. this.Password = new System.Windows.Forms.TextBox();
  35. this.SuspendLayout();
  36. //
  37. // button1
  38. //
  39. this.button1.Location = new System.Drawing.Point(319, 395);
  40. this.button1.Name = "button1";
  41. this.button1.Size = new System.Drawing.Size(100, 23);
  42. this.button1.TabIndex = 0;
  43. this.button1.Text = "Войти";
  44. this.button1.UseVisualStyleBackColor = true;
  45. this.button1.Click += new System.EventHandler(this.button1_Click);
  46. //
  47. // label1
  48. //
  49. this.label1.AutoSize = true;
  50. this.label1.Location = new System.Drawing.Point(347, 295);
  51. this.label1.Name = "label1";
  52. this.label1.Size = new System.Drawing.Size(38, 13);
  53. this.label1.TabIndex = 1;
  54. this.label1.Text = "Логин";
  55. //
  56. // label2
  57. //
  58. this.label2.AutoSize = true;
  59. this.label2.Location = new System.Drawing.Point(347, 338);
  60. this.label2.Name = "label2";
  61. this.label2.Size = new System.Drawing.Size(45, 13);
  62. this.label2.TabIndex = 2;
  63. this.label2.Text = "Пароль";
  64. //
  65. // label3
  66. //
  67. this.label3.AutoSize = true;
  68. this.label3.Location = new System.Drawing.Point(316, 127);
  69. this.label3.Name = "label3";
  70. this.label3.Size = new System.Drawing.Size(101, 13);
  71. this.label3.TabIndex = 3;
  72. this.label3.Text = "Окно авторизации";
  73. //
  74. // Login
  75. //
  76. this.Login.Location = new System.Drawing.Point(319, 311);
  77. this.Login.Name = "Login";
  78. this.Login.Size = new System.Drawing.Size(100, 20);
  79. this.Login.TabIndex = 4;
  80. this.Login.TextChanged += new System.EventHandler(this.Login_TextChanged);
  81. //
  82. // Password
  83. //
  84. this.Password.Location = new System.Drawing.Point(319, 354);
  85. this.Password.Name = "Password";
  86. this.Password.Size = new System.Drawing.Size(100, 20);
  87. this.Password.TabIndex = 5;
  88. this.Password.TextChanged += new System.EventHandler(this.Password_TextChanged);
  89. //
  90. // Form1
  91. //
  92. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  93. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  94. this.ClientSize = new System.Drawing.Size(782, 539);
  95. this.Controls.Add(this.Password);
  96. this.Controls.Add(this.Login);
  97. this.Controls.Add(this.label3);
  98. this.Controls.Add(this.label2);
  99. this.Controls.Add(this.label1);
  100. this.Controls.Add(this.button1);
  101. this.Name = "Form1";
  102. this.Text = "Form1";
  103. this.ResumeLayout(false);
  104. this.PerformLayout();
  105. }
  106. #endregion
  107. private System.Windows.Forms.Button button1;
  108. private System.Windows.Forms.Label label1;
  109. private System.Windows.Forms.Label label2;
  110. private System.Windows.Forms.Label label3;
  111. private System.Windows.Forms.TextBox Login;
  112. private System.Windows.Forms.TextBox Password;
  113. }
  114. }