Form1.Designer.cs 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. namespace konkurs
  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.button2 = new System.Windows.Forms.Button();
  29. this.textBox1 = new System.Windows.Forms.TextBox();
  30. this.textBox2 = new System.Windows.Forms.TextBox();
  31. this.SuspendLayout();
  32. //
  33. // button2
  34. //
  35. this.button2.Location = new System.Drawing.Point(216, 192);
  36. this.button2.Name = "button2";
  37. this.button2.Size = new System.Drawing.Size(169, 33);
  38. this.button2.TabIndex = 1;
  39. this.button2.Text = "войти";
  40. this.button2.UseVisualStyleBackColor = true;
  41. this.button2.Click += new System.EventHandler(this.button2_Click);
  42. //
  43. // textBox1
  44. //
  45. this.textBox1.Location = new System.Drawing.Point(216, 118);
  46. this.textBox1.Name = "textBox1";
  47. this.textBox1.Size = new System.Drawing.Size(169, 20);
  48. this.textBox1.TabIndex = 2;
  49. this.textBox1.Text = "введите логин";
  50. this.textBox1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  51. this.textBox1.TextChanged += new System.EventHandler(this.textBox1_TextChanged);
  52. this.textBox1.Enter += new System.EventHandler(this.textBox1_Enter);
  53. this.textBox1.Leave += new System.EventHandler(this.textBox1_Leave);
  54. //
  55. // textBox2
  56. //
  57. this.textBox2.Location = new System.Drawing.Point(216, 154);
  58. this.textBox2.Name = "textBox2";
  59. this.textBox2.Size = new System.Drawing.Size(169, 20);
  60. this.textBox2.TabIndex = 3;
  61. this.textBox2.Text = "введите пароль";
  62. this.textBox2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  63. this.textBox2.Enter += new System.EventHandler(this.textBox2_Enter);
  64. this.textBox2.Leave += new System.EventHandler(this.textBox2_Leave);
  65. //
  66. // Form1
  67. //
  68. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  69. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  70. this.ClientSize = new System.Drawing.Size(635, 372);
  71. this.Controls.Add(this.textBox2);
  72. this.Controls.Add(this.textBox1);
  73. this.Controls.Add(this.button2);
  74. this.Name = "Form1";
  75. this.Text = "Form1";
  76. this.ResumeLayout(false);
  77. this.PerformLayout();
  78. }
  79. #endregion
  80. private System.Windows.Forms.Button button2;
  81. private System.Windows.Forms.TextBox textBox1;
  82. private System.Windows.Forms.TextBox textBox2;
  83. }
  84. }