Form1.Designer.cs 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. namespace lyahov_tim
  2. {
  3. partial class Авторизация
  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. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Авторизация));
  29. this.vxod = new System.Windows.Forms.Button();
  30. this.exit = new System.Windows.Forms.Button();
  31. this.pictureBox1 = new System.Windows.Forms.PictureBox();
  32. this.label1 = new System.Windows.Forms.Label();
  33. this.label2 = new System.Windows.Forms.Label();
  34. this.login = new System.Windows.Forms.TextBox();
  35. this.password = new System.Windows.Forms.TextBox();
  36. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
  37. this.SuspendLayout();
  38. //
  39. // vxod
  40. //
  41. this.vxod.Font = new System.Drawing.Font("Tw Cen MT", 11.25F);
  42. this.vxod.Location = new System.Drawing.Point(89, 349);
  43. this.vxod.Name = "vxod";
  44. this.vxod.Size = new System.Drawing.Size(118, 35);
  45. this.vxod.TabIndex = 0;
  46. this.vxod.Text = "Login";
  47. this.vxod.UseVisualStyleBackColor = true;
  48. this.vxod.Click += new System.EventHandler(this.vxod_Click);
  49. //
  50. // exit
  51. //
  52. this.exit.Font = new System.Drawing.Font("Tw Cen MT", 11.25F);
  53. this.exit.Location = new System.Drawing.Point(374, 349);
  54. this.exit.Name = "exit";
  55. this.exit.Size = new System.Drawing.Size(105, 35);
  56. this.exit.TabIndex = 1;
  57. this.exit.Text = "Exit";
  58. this.exit.UseVisualStyleBackColor = true;
  59. this.exit.Click += new System.EventHandler(this.exit_Click);
  60. //
  61. // pictureBox1
  62. //
  63. this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
  64. this.pictureBox1.Location = new System.Drawing.Point(114, 12);
  65. this.pictureBox1.Name = "pictureBox1";
  66. this.pictureBox1.Size = new System.Drawing.Size(365, 109);
  67. this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  68. this.pictureBox1.TabIndex = 2;
  69. this.pictureBox1.TabStop = false;
  70. //
  71. // label1
  72. //
  73. this.label1.AutoSize = true;
  74. this.label1.Font = new System.Drawing.Font("Tw Cen MT", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  75. this.label1.Location = new System.Drawing.Point(54, 187);
  76. this.label1.Name = "label1";
  77. this.label1.Size = new System.Drawing.Size(84, 22);
  78. this.label1.TabIndex = 3;
  79. this.label1.Text = "Username";
  80. //
  81. // label2
  82. //
  83. this.label2.AutoSize = true;
  84. this.label2.Font = new System.Drawing.Font("Tw Cen MT", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  85. this.label2.Location = new System.Drawing.Point(54, 252);
  86. this.label2.Name = "label2";
  87. this.label2.Size = new System.Drawing.Size(81, 22);
  88. this.label2.TabIndex = 4;
  89. this.label2.Text = "Password";
  90. //
  91. // login
  92. //
  93. this.login.Location = new System.Drawing.Point(144, 188);
  94. this.login.Name = "login";
  95. this.login.Size = new System.Drawing.Size(335, 20);
  96. this.login.TabIndex = 5;
  97. //
  98. // password
  99. //
  100. this.password.Location = new System.Drawing.Point(141, 255);
  101. this.password.Name = "password";
  102. this.password.Size = new System.Drawing.Size(338, 20);
  103. this.password.TabIndex = 6;
  104. //
  105. // Авторизация
  106. //
  107. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  108. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  109. this.ClientSize = new System.Drawing.Size(629, 433);
  110. this.Controls.Add(this.password);
  111. this.Controls.Add(this.login);
  112. this.Controls.Add(this.label2);
  113. this.Controls.Add(this.label1);
  114. this.Controls.Add(this.pictureBox1);
  115. this.Controls.Add(this.exit);
  116. this.Controls.Add(this.vxod);
  117. this.Name = "Авторизация";
  118. this.Text = "Авторизация";
  119. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
  120. this.ResumeLayout(false);
  121. this.PerformLayout();
  122. }
  123. #endregion
  124. private System.Windows.Forms.Button vxod;
  125. private System.Windows.Forms.Button exit;
  126. private System.Windows.Forms.PictureBox pictureBox1;
  127. private System.Windows.Forms.Label label1;
  128. private System.Windows.Forms.Label label2;
  129. private System.Windows.Forms.TextBox login;
  130. private System.Windows.Forms.TextBox password;
  131. }
  132. }