FormFindLeven.Designer.cs 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243
  1. namespace СУБД_Агентство
  2. {
  3. partial class FormFindLeven
  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.label1 = new System.Windows.Forms.Label();
  29. this.tbxFind = new System.Windows.Forms.TextBox();
  30. this.groupBox1 = new System.Windows.Forms.GroupBox();
  31. this.rbtName = new System.Windows.Forms.RadioButton();
  32. this.rbtFam = new System.Windows.Forms.RadioButton();
  33. this.btnFind = new System.Windows.Forms.Button();
  34. this.btnShowAll = new System.Windows.Forms.Button();
  35. this.dgvUsers = new System.Windows.Forms.DataGridView();
  36. this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  37. this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  38. this.label4 = new System.Windows.Forms.Label();
  39. this.pictureBox1 = new System.Windows.Forms.PictureBox();
  40. this.panel1 = new System.Windows.Forms.Panel();
  41. this.groupBox1.SuspendLayout();
  42. ((System.ComponentModel.ISupportInitialize)(this.dgvUsers)).BeginInit();
  43. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
  44. this.panel1.SuspendLayout();
  45. this.SuspendLayout();
  46. //
  47. // label1
  48. //
  49. this.label1.AutoSize = true;
  50. this.label1.Location = new System.Drawing.Point(10, 139);
  51. this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  52. this.label1.Name = "label1";
  53. this.label1.Size = new System.Drawing.Size(211, 23);
  54. this.label1.TabIndex = 0;
  55. this.label1.Text = "Введите текст для поиска:";
  56. //
  57. // tbxFind
  58. //
  59. this.tbxFind.Location = new System.Drawing.Point(15, 164);
  60. this.tbxFind.Margin = new System.Windows.Forms.Padding(4);
  61. this.tbxFind.Name = "tbxFind";
  62. this.tbxFind.Size = new System.Drawing.Size(493, 29);
  63. this.tbxFind.TabIndex = 1;
  64. //
  65. // groupBox1
  66. //
  67. this.groupBox1.Controls.Add(this.rbtName);
  68. this.groupBox1.Controls.Add(this.rbtFam);
  69. this.groupBox1.Location = new System.Drawing.Point(15, 207);
  70. this.groupBox1.Margin = new System.Windows.Forms.Padding(4);
  71. this.groupBox1.Name = "groupBox1";
  72. this.groupBox1.Padding = new System.Windows.Forms.Padding(4);
  73. this.groupBox1.Size = new System.Drawing.Size(495, 79);
  74. this.groupBox1.TabIndex = 2;
  75. this.groupBox1.TabStop = false;
  76. this.groupBox1.Text = "Искать по";
  77. //
  78. // rbtName
  79. //
  80. this.rbtName.AutoSize = true;
  81. this.rbtName.Location = new System.Drawing.Point(296, 29);
  82. this.rbtName.Margin = new System.Windows.Forms.Padding(4);
  83. this.rbtName.Name = "rbtName";
  84. this.rbtName.Size = new System.Drawing.Size(80, 27);
  85. this.rbtName.TabIndex = 1;
  86. this.rbtName.Text = "имени";
  87. this.rbtName.UseVisualStyleBackColor = true;
  88. this.rbtName.Click += new System.EventHandler(this.btnFind_Click);
  89. //
  90. // rbtFam
  91. //
  92. this.rbtFam.AutoSize = true;
  93. this.rbtFam.Checked = true;
  94. this.rbtFam.Location = new System.Drawing.Point(104, 29);
  95. this.rbtFam.Margin = new System.Windows.Forms.Padding(4);
  96. this.rbtFam.Name = "rbtFam";
  97. this.rbtFam.Size = new System.Drawing.Size(104, 27);
  98. this.rbtFam.TabIndex = 0;
  99. this.rbtFam.TabStop = true;
  100. this.rbtFam.Text = "фамилии";
  101. this.rbtFam.UseVisualStyleBackColor = true;
  102. this.rbtFam.Click += new System.EventHandler(this.btnFind_Click);
  103. //
  104. // btnFind
  105. //
  106. this.btnFind.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(4)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  107. this.btnFind.Location = new System.Drawing.Point(15, 297);
  108. this.btnFind.Margin = new System.Windows.Forms.Padding(4);
  109. this.btnFind.Name = "btnFind";
  110. this.btnFind.Size = new System.Drawing.Size(166, 36);
  111. this.btnFind.TabIndex = 3;
  112. this.btnFind.Text = "Выполнить поиск";
  113. this.btnFind.UseVisualStyleBackColor = false;
  114. this.btnFind.Click += new System.EventHandler(this.btnFind_Click);
  115. //
  116. // btnShowAll
  117. //
  118. this.btnShowAll.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(4)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  119. this.btnShowAll.Location = new System.Drawing.Point(342, 297);
  120. this.btnShowAll.Margin = new System.Windows.Forms.Padding(4);
  121. this.btnShowAll.Name = "btnShowAll";
  122. this.btnShowAll.Size = new System.Drawing.Size(166, 36);
  123. this.btnShowAll.TabIndex = 4;
  124. this.btnShowAll.Text = "Отобразить все";
  125. this.btnShowAll.UseVisualStyleBackColor = false;
  126. this.btnShowAll.Click += new System.EventHandler(this.btnShowAll_Click);
  127. //
  128. // dgvUsers
  129. //
  130. this.dgvUsers.AllowUserToAddRows = false;
  131. this.dgvUsers.AllowUserToDeleteRows = false;
  132. this.dgvUsers.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  133. this.dgvUsers.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  134. this.Column1,
  135. this.Column2});
  136. this.dgvUsers.Location = new System.Drawing.Point(14, 341);
  137. this.dgvUsers.Margin = new System.Windows.Forms.Padding(4);
  138. this.dgvUsers.Name = "dgvUsers";
  139. this.dgvUsers.ReadOnly = true;
  140. this.dgvUsers.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
  141. this.dgvUsers.Size = new System.Drawing.Size(495, 302);
  142. this.dgvUsers.TabIndex = 5;
  143. this.dgvUsers.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvUsers_CellContentClick);
  144. //
  145. // Column1
  146. //
  147. this.Column1.HeaderText = "Фамилия";
  148. this.Column1.Name = "Column1";
  149. this.Column1.ReadOnly = true;
  150. this.Column1.Width = 120;
  151. //
  152. // Column2
  153. //
  154. this.Column2.HeaderText = "Имя";
  155. this.Column2.Name = "Column2";
  156. this.Column2.ReadOnly = true;
  157. this.Column2.Width = 120;
  158. //
  159. // label4
  160. //
  161. this.label4.AutoSize = true;
  162. this.label4.Font = new System.Drawing.Font("Comic Sans MS", 16.2F);
  163. this.label4.Location = new System.Drawing.Point(53, 40);
  164. this.label4.Name = "label4";
  165. this.label4.Size = new System.Drawing.Size(236, 39);
  166. this.label4.TabIndex = 1;
  167. this.label4.Text = "Нечеткий поиск";
  168. //
  169. // pictureBox1
  170. //
  171. this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Right;
  172. this.pictureBox1.Image = global::СУБД_Агентство.Properties.Resources.logo;
  173. this.pictureBox1.Location = new System.Drawing.Point(354, 0);
  174. this.pictureBox1.Name = "pictureBox1";
  175. this.pictureBox1.Size = new System.Drawing.Size(172, 119);
  176. this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
  177. this.pictureBox1.TabIndex = 0;
  178. this.pictureBox1.TabStop = false;
  179. //
  180. // panel1
  181. //
  182. this.panel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(250)))), ((int)(((byte)(191)))));
  183. this.panel1.Controls.Add(this.label4);
  184. this.panel1.Controls.Add(this.pictureBox1);
  185. this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
  186. this.panel1.Location = new System.Drawing.Point(0, 0);
  187. this.panel1.Name = "panel1";
  188. this.panel1.Size = new System.Drawing.Size(526, 119);
  189. this.panel1.TabIndex = 10;
  190. //
  191. // FormFindLeven
  192. //
  193. this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
  194. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  195. this.BackColor = System.Drawing.Color.White;
  196. this.ClientSize = new System.Drawing.Size(526, 654);
  197. this.Controls.Add(this.panel1);
  198. this.Controls.Add(this.dgvUsers);
  199. this.Controls.Add(this.btnShowAll);
  200. this.Controls.Add(this.btnFind);
  201. this.Controls.Add(this.groupBox1);
  202. this.Controls.Add(this.tbxFind);
  203. this.Controls.Add(this.label1);
  204. this.Font = new System.Drawing.Font("Comic Sans MS", 9.2F);
  205. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
  206. this.Margin = new System.Windows.Forms.Padding(4);
  207. this.MaximizeBox = false;
  208. this.MinimizeBox = false;
  209. this.Name = "FormFindLeven";
  210. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  211. this.Text = "СУБД \"Агентство недвижимости\"";
  212. this.Load += new System.EventHandler(this.FormFindLeven_Load);
  213. this.groupBox1.ResumeLayout(false);
  214. this.groupBox1.PerformLayout();
  215. ((System.ComponentModel.ISupportInitialize)(this.dgvUsers)).EndInit();
  216. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
  217. this.panel1.ResumeLayout(false);
  218. this.panel1.PerformLayout();
  219. this.ResumeLayout(false);
  220. this.PerformLayout();
  221. }
  222. #endregion
  223. private System.Windows.Forms.Label label1;
  224. private System.Windows.Forms.TextBox tbxFind;
  225. private System.Windows.Forms.GroupBox groupBox1;
  226. private System.Windows.Forms.RadioButton rbtName;
  227. private System.Windows.Forms.RadioButton rbtFam;
  228. private System.Windows.Forms.Button btnFind;
  229. private System.Windows.Forms.Button btnShowAll;
  230. private System.Windows.Forms.DataGridView dgvUsers;
  231. private System.Windows.Forms.DataGridViewTextBoxColumn Column1;
  232. private System.Windows.Forms.DataGridViewTextBoxColumn Column2;
  233. private System.Windows.Forms.Label label4;
  234. private System.Windows.Forms.PictureBox pictureBox1;
  235. private System.Windows.Forms.Panel panel1;
  236. }
  237. }