Form1.Designer.cs 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. namespace KokursTest2
  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.components = new System.ComponentModel.Container();
  29. this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
  30. this.textBox1 = new System.Windows.Forms.TextBox();
  31. this.textBox2 = new System.Windows.Forms.TextBox();
  32. this.button1 = new System.Windows.Forms.Button();
  33. this.SuspendLayout();
  34. //
  35. // contextMenuStrip1
  36. //
  37. this.contextMenuStrip1.Name = "contextMenuStrip1";
  38. this.contextMenuStrip1.Size = new System.Drawing.Size(61, 4);
  39. //
  40. // textBox1
  41. //
  42. this.textBox1.Location = new System.Drawing.Point(211, 112);
  43. this.textBox1.Name = "textBox1";
  44. this.textBox1.Size = new System.Drawing.Size(147, 20);
  45. this.textBox1.TabIndex = 2;
  46. this.textBox1.Text = "Введите логин";
  47. this.textBox1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  48. this.textBox1.TextChanged += new System.EventHandler(this.textBox1_TextChanged);
  49. this.textBox1.Enter += new System.EventHandler(this.textBox1_Enter);
  50. this.textBox1.Leave += new System.EventHandler(this.textBox1_Leave);
  51. //
  52. // textBox2
  53. //
  54. this.textBox2.Location = new System.Drawing.Point(211, 150);
  55. this.textBox2.Name = "textBox2";
  56. this.textBox2.Size = new System.Drawing.Size(147, 20);
  57. this.textBox2.TabIndex = 3;
  58. this.textBox2.Text = "Введите пароль";
  59. this.textBox2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  60. this.textBox2.TextChanged += new System.EventHandler(this.textBox2_TextChanged);
  61. this.textBox2.Enter += new System.EventHandler(this.textBox2_Enter);
  62. this.textBox2.Leave += new System.EventHandler(this.textBox2_Leave);
  63. //
  64. // button1
  65. //
  66. this.button1.Location = new System.Drawing.Point(212, 186);
  67. this.button1.Name = "button1";
  68. this.button1.Size = new System.Drawing.Size(146, 29);
  69. this.button1.TabIndex = 4;
  70. this.button1.Text = "Ввойти";
  71. this.button1.UseVisualStyleBackColor = true;
  72. this.button1.Click += new System.EventHandler(this.button1_Click);
  73. //
  74. // Form1
  75. //
  76. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  77. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  78. this.ClientSize = new System.Drawing.Size(594, 363);
  79. this.Controls.Add(this.button1);
  80. this.Controls.Add(this.textBox2);
  81. this.Controls.Add(this.textBox1);
  82. this.Name = "Form1";
  83. this.Text = "Form1";
  84. this.Load += new System.EventHandler(this.Form1_Load);
  85. this.ResumeLayout(false);
  86. this.PerformLayout();
  87. }
  88. #endregion
  89. private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
  90. private System.Windows.Forms.TextBox textBox1;
  91. private System.Windows.Forms.TextBox textBox2;
  92. private System.Windows.Forms.Button button1;
  93. }
  94. }