Form2.Designer.cs 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. namespace KokursTest2
  2. {
  3. partial class Form2
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</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 Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.textBox1 = new System.Windows.Forms.TextBox();
  29. this.textBox2 = new System.Windows.Forms.TextBox();
  30. this.button1 = new System.Windows.Forms.Button();
  31. this.radioButton1 = new System.Windows.Forms.RadioButton();
  32. this.radioButton2 = new System.Windows.Forms.RadioButton();
  33. this.panel1 = new System.Windows.Forms.Panel();
  34. this.textBox3 = new System.Windows.Forms.TextBox();
  35. this.button2 = new System.Windows.Forms.Button();
  36. this.panel1.SuspendLayout();
  37. this.SuspendLayout();
  38. //
  39. // textBox1
  40. //
  41. this.textBox1.Location = new System.Drawing.Point(81, 63);
  42. this.textBox1.Name = "textBox1";
  43. this.textBox1.Size = new System.Drawing.Size(209, 20);
  44. this.textBox1.TabIndex = 0;
  45. this.textBox1.Text = "Введите логин";
  46. this.textBox1.TextChanged += new System.EventHandler(this.textBox1_TextChanged);
  47. this.textBox1.Enter += new System.EventHandler(this.textBox1_Enter);
  48. this.textBox1.Leave += new System.EventHandler(this.textBox1_Leave);
  49. //
  50. // textBox2
  51. //
  52. this.textBox2.Location = new System.Drawing.Point(81, 98);
  53. this.textBox2.Name = "textBox2";
  54. this.textBox2.Size = new System.Drawing.Size(209, 20);
  55. this.textBox2.TabIndex = 1;
  56. this.textBox2.Text = "Введите пароль";
  57. this.textBox2.TextChanged += new System.EventHandler(this.textBox2_TextChanged);
  58. this.textBox2.Enter += new System.EventHandler(this.textBox2_Enter);
  59. this.textBox2.Leave += new System.EventHandler(this.textBox2_Leave);
  60. //
  61. // button1
  62. //
  63. this.button1.Location = new System.Drawing.Point(81, 222);
  64. this.button1.Name = "button1";
  65. this.button1.Size = new System.Drawing.Size(209, 60);
  66. this.button1.TabIndex = 2;
  67. this.button1.Text = "добавить пользователя";
  68. this.button1.UseVisualStyleBackColor = true;
  69. this.button1.Click += new System.EventHandler(this.button1_Click);
  70. //
  71. // radioButton1
  72. //
  73. this.radioButton1.AutoSize = true;
  74. this.radioButton1.Location = new System.Drawing.Point(16, 19);
  75. this.radioButton1.Name = "radioButton1";
  76. this.radioButton1.Size = new System.Drawing.Size(58, 17);
  77. this.radioButton1.TabIndex = 3;
  78. this.radioButton1.TabStop = true;
  79. this.radioButton1.Text = "Админ";
  80. this.radioButton1.UseVisualStyleBackColor = true;
  81. //
  82. // radioButton2
  83. //
  84. this.radioButton2.AutoSize = true;
  85. this.radioButton2.Location = new System.Drawing.Point(113, 19);
  86. this.radioButton2.Name = "radioButton2";
  87. this.radioButton2.Size = new System.Drawing.Size(77, 17);
  88. this.radioButton2.TabIndex = 4;
  89. this.radioButton2.TabStop = true;
  90. this.radioButton2.Text = "манеджер";
  91. this.radioButton2.UseVisualStyleBackColor = true;
  92. //
  93. // panel1
  94. //
  95. this.panel1.Controls.Add(this.radioButton1);
  96. this.panel1.Controls.Add(this.radioButton2);
  97. this.panel1.Location = new System.Drawing.Point(81, 136);
  98. this.panel1.Name = "panel1";
  99. this.panel1.Size = new System.Drawing.Size(209, 58);
  100. this.panel1.TabIndex = 5;
  101. this.panel1.Paint += new System.Windows.Forms.PaintEventHandler(this.panel1_Paint);
  102. //
  103. // textBox3
  104. //
  105. this.textBox3.Location = new System.Drawing.Point(434, 63);
  106. this.textBox3.Name = "textBox3";
  107. this.textBox3.Size = new System.Drawing.Size(123, 20);
  108. this.textBox3.TabIndex = 6;
  109. this.textBox3.TextChanged += new System.EventHandler(this.textBox3_TextChanged);
  110. //
  111. // button2
  112. //
  113. this.button2.Location = new System.Drawing.Point(436, 117);
  114. this.button2.Name = "button2";
  115. this.button2.Size = new System.Drawing.Size(121, 42);
  116. this.button2.TabIndex = 7;
  117. this.button2.Text = "удалить пользователя";
  118. this.button2.UseVisualStyleBackColor = true;
  119. this.button2.Click += new System.EventHandler(this.button2_Click);
  120. //
  121. // Form2
  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(640, 413);
  126. this.Controls.Add(this.button2);
  127. this.Controls.Add(this.textBox3);
  128. this.Controls.Add(this.panel1);
  129. this.Controls.Add(this.button1);
  130. this.Controls.Add(this.textBox2);
  131. this.Controls.Add(this.textBox1);
  132. this.Name = "Form2";
  133. this.Text = "Form2";
  134. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form2_FormClosing);
  135. this.Load += new System.EventHandler(this.Form2_Load);
  136. this.panel1.ResumeLayout(false);
  137. this.panel1.PerformLayout();
  138. this.ResumeLayout(false);
  139. this.PerformLayout();
  140. }
  141. #endregion
  142. private System.Windows.Forms.TextBox textBox1;
  143. private System.Windows.Forms.TextBox textBox2;
  144. private System.Windows.Forms.Button button1;
  145. private System.Windows.Forms.RadioButton radioButton1;
  146. private System.Windows.Forms.RadioButton radioButton2;
  147. private System.Windows.Forms.Panel panel1;
  148. private System.Windows.Forms.TextBox textBox3;
  149. private System.Windows.Forms.Button button2;
  150. }
  151. }