Form1.Designer.cs 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. namespace ИС32Осадчий
  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.button1 = new System.Windows.Forms.Button();
  30. this.button2 = new System.Windows.Forms.Button();
  31. this.panel1 = new System.Windows.Forms.Panel();
  32. this.printDocument1 = new System.Drawing.Printing.PrintDocument();
  33. this.label2 = new System.Windows.Forms.Label();
  34. this.label3 = new System.Windows.Forms.Label();
  35. this.textBox1 = new System.Windows.Forms.TextBox();
  36. this.textBox2 = new System.Windows.Forms.TextBox();
  37. this.panel1.SuspendLayout();
  38. this.SuspendLayout();
  39. //
  40. // label1
  41. //
  42. this.label1.AutoSize = true;
  43. this.label1.BackColor = System.Drawing.SystemColors.ActiveCaption;
  44. this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  45. this.label1.Location = new System.Drawing.Point(292, 96);
  46. this.label1.Name = "label1";
  47. this.label1.Size = new System.Drawing.Size(141, 25);
  48. this.label1.TabIndex = 0;
  49. this.label1.Text = "Авторизация";
  50. //
  51. // button1
  52. //
  53. this.button1.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  54. this.button1.Location = new System.Drawing.Point(12, 391);
  55. this.button1.Name = "button1";
  56. this.button1.Size = new System.Drawing.Size(97, 45);
  57. this.button1.TabIndex = 1;
  58. this.button1.Text = "Вход";
  59. this.button1.UseVisualStyleBackColor = true;
  60. this.button1.Click += new System.EventHandler(this.button1_Click);
  61. //
  62. // button2
  63. //
  64. this.button2.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  65. this.button2.Location = new System.Drawing.Point(600, 391);
  66. this.button2.Name = "button2";
  67. this.button2.Size = new System.Drawing.Size(97, 45);
  68. this.button2.TabIndex = 2;
  69. this.button2.Text = "Выход";
  70. this.button2.UseVisualStyleBackColor = true;
  71. this.button2.Click += new System.EventHandler(this.button2_Click);
  72. //
  73. // panel1
  74. //
  75. this.panel1.BackColor = System.Drawing.Color.Moccasin;
  76. this.panel1.Controls.Add(this.textBox2);
  77. this.panel1.Controls.Add(this.textBox1);
  78. this.panel1.Controls.Add(this.label3);
  79. this.panel1.Controls.Add(this.label2);
  80. this.panel1.Controls.Add(this.button1);
  81. this.panel1.Controls.Add(this.label1);
  82. this.panel1.Controls.Add(this.button2);
  83. this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
  84. this.panel1.Location = new System.Drawing.Point(0, 0);
  85. this.panel1.Name = "panel1";
  86. this.panel1.Size = new System.Drawing.Size(709, 448);
  87. this.panel1.TabIndex = 3;
  88. //
  89. // label2
  90. //
  91. this.label2.AutoSize = true;
  92. this.label2.Location = new System.Drawing.Point(227, 181);
  93. this.label2.Name = "label2";
  94. this.label2.Size = new System.Drawing.Size(38, 13);
  95. this.label2.TabIndex = 3;
  96. this.label2.Text = "Логин";
  97. //
  98. // label3
  99. //
  100. this.label3.AutoSize = true;
  101. this.label3.Location = new System.Drawing.Point(230, 216);
  102. this.label3.Name = "label3";
  103. this.label3.Size = new System.Drawing.Size(45, 13);
  104. this.label3.TabIndex = 4;
  105. this.label3.Text = "Пароль";
  106. //
  107. // textBox1
  108. //
  109. this.textBox1.Location = new System.Drawing.Point(297, 181);
  110. this.textBox1.Name = "textBox1";
  111. this.textBox1.Size = new System.Drawing.Size(136, 20);
  112. this.textBox1.TabIndex = 5;
  113. //
  114. // textBox2
  115. //
  116. this.textBox2.Location = new System.Drawing.Point(297, 216);
  117. this.textBox2.Name = "textBox2";
  118. this.textBox2.Size = new System.Drawing.Size(136, 20);
  119. this.textBox2.TabIndex = 6;
  120. //
  121. // Form1
  122. //
  123. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  124. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  125. this.ClientSize = new System.Drawing.Size(709, 448);
  126. this.Controls.Add(this.panel1);
  127. this.Name = "Form1";
  128. this.Text = "Form1";
  129. this.panel1.ResumeLayout(false);
  130. this.panel1.PerformLayout();
  131. this.ResumeLayout(false);
  132. }
  133. #endregion
  134. private System.Windows.Forms.Label label1;
  135. private System.Windows.Forms.Button button1;
  136. private System.Windows.Forms.Button button2;
  137. private System.Windows.Forms.Panel panel1;
  138. private System.Windows.Forms.TextBox textBox2;
  139. private System.Windows.Forms.TextBox textBox1;
  140. private System.Windows.Forms.Label label3;
  141. private System.Windows.Forms.Label label2;
  142. private System.Drawing.Printing.PrintDocument printDocument1;
  143. }
  144. }