namespace СУБД_Агентство { partial class FormFindLeven { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.label1 = new System.Windows.Forms.Label(); this.tbxFind = new System.Windows.Forms.TextBox(); this.groupBox1 = new System.Windows.Forms.GroupBox(); this.rbtName = new System.Windows.Forms.RadioButton(); this.rbtFam = new System.Windows.Forms.RadioButton(); this.btnFind = new System.Windows.Forms.Button(); this.btnShowAll = new System.Windows.Forms.Button(); this.dgvUsers = new System.Windows.Forms.DataGridView(); this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.label4 = new System.Windows.Forms.Label(); this.pictureBox1 = new System.Windows.Forms.PictureBox(); this.panel1 = new System.Windows.Forms.Panel(); this.groupBox1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.dgvUsers)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); this.panel1.SuspendLayout(); this.SuspendLayout(); // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(10, 139); this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(211, 23); this.label1.TabIndex = 0; this.label1.Text = "Введите текст для поиска:"; // // tbxFind // this.tbxFind.Location = new System.Drawing.Point(15, 164); this.tbxFind.Margin = new System.Windows.Forms.Padding(4); this.tbxFind.Name = "tbxFind"; this.tbxFind.Size = new System.Drawing.Size(493, 29); this.tbxFind.TabIndex = 1; // // groupBox1 // this.groupBox1.Controls.Add(this.rbtName); this.groupBox1.Controls.Add(this.rbtFam); this.groupBox1.Location = new System.Drawing.Point(15, 207); this.groupBox1.Margin = new System.Windows.Forms.Padding(4); this.groupBox1.Name = "groupBox1"; this.groupBox1.Padding = new System.Windows.Forms.Padding(4); this.groupBox1.Size = new System.Drawing.Size(495, 79); this.groupBox1.TabIndex = 2; this.groupBox1.TabStop = false; this.groupBox1.Text = "Искать по"; // // rbtName // this.rbtName.AutoSize = true; this.rbtName.Location = new System.Drawing.Point(296, 29); this.rbtName.Margin = new System.Windows.Forms.Padding(4); this.rbtName.Name = "rbtName"; this.rbtName.Size = new System.Drawing.Size(80, 27); this.rbtName.TabIndex = 1; this.rbtName.Text = "имени"; this.rbtName.UseVisualStyleBackColor = true; this.rbtName.Click += new System.EventHandler(this.btnFind_Click); // // rbtFam // this.rbtFam.AutoSize = true; this.rbtFam.Checked = true; this.rbtFam.Location = new System.Drawing.Point(104, 29); this.rbtFam.Margin = new System.Windows.Forms.Padding(4); this.rbtFam.Name = "rbtFam"; this.rbtFam.Size = new System.Drawing.Size(104, 27); this.rbtFam.TabIndex = 0; this.rbtFam.TabStop = true; this.rbtFam.Text = "фамилии"; this.rbtFam.UseVisualStyleBackColor = true; this.rbtFam.Click += new System.EventHandler(this.btnFind_Click); // // btnFind // this.btnFind.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(4)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); this.btnFind.Location = new System.Drawing.Point(15, 297); this.btnFind.Margin = new System.Windows.Forms.Padding(4); this.btnFind.Name = "btnFind"; this.btnFind.Size = new System.Drawing.Size(166, 36); this.btnFind.TabIndex = 3; this.btnFind.Text = "Выполнить поиск"; this.btnFind.UseVisualStyleBackColor = false; this.btnFind.Click += new System.EventHandler(this.btnFind_Click); // // btnShowAll // this.btnShowAll.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(4)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); this.btnShowAll.Location = new System.Drawing.Point(342, 297); this.btnShowAll.Margin = new System.Windows.Forms.Padding(4); this.btnShowAll.Name = "btnShowAll"; this.btnShowAll.Size = new System.Drawing.Size(166, 36); this.btnShowAll.TabIndex = 4; this.btnShowAll.Text = "Отобразить все"; this.btnShowAll.UseVisualStyleBackColor = false; this.btnShowAll.Click += new System.EventHandler(this.btnShowAll_Click); // // dgvUsers // this.dgvUsers.AllowUserToAddRows = false; this.dgvUsers.AllowUserToDeleteRows = false; this.dgvUsers.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; this.dgvUsers.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { this.Column1, this.Column2}); this.dgvUsers.Location = new System.Drawing.Point(14, 341); this.dgvUsers.Margin = new System.Windows.Forms.Padding(4); this.dgvUsers.Name = "dgvUsers"; this.dgvUsers.ReadOnly = true; this.dgvUsers.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect; this.dgvUsers.Size = new System.Drawing.Size(495, 302); this.dgvUsers.TabIndex = 5; this.dgvUsers.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvUsers_CellContentClick); // // Column1 // this.Column1.HeaderText = "Фамилия"; this.Column1.Name = "Column1"; this.Column1.ReadOnly = true; this.Column1.Width = 120; // // Column2 // this.Column2.HeaderText = "Имя"; this.Column2.Name = "Column2"; this.Column2.ReadOnly = true; this.Column2.Width = 120; // // label4 // this.label4.AutoSize = true; this.label4.Font = new System.Drawing.Font("Comic Sans MS", 16.2F); this.label4.Location = new System.Drawing.Point(53, 40); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(236, 39); this.label4.TabIndex = 1; this.label4.Text = "Нечеткий поиск"; // // pictureBox1 // this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Right; this.pictureBox1.Image = global::СУБД_Агентство.Properties.Resources.logo; this.pictureBox1.Location = new System.Drawing.Point(354, 0); this.pictureBox1.Name = "pictureBox1"; this.pictureBox1.Size = new System.Drawing.Size(172, 119); this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom; this.pictureBox1.TabIndex = 0; this.pictureBox1.TabStop = false; // // panel1 // this.panel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(250)))), ((int)(((byte)(191))))); this.panel1.Controls.Add(this.label4); this.panel1.Controls.Add(this.pictureBox1); this.panel1.Dock = System.Windows.Forms.DockStyle.Top; this.panel1.Location = new System.Drawing.Point(0, 0); this.panel1.Name = "panel1"; this.panel1.Size = new System.Drawing.Size(526, 119); this.panel1.TabIndex = 10; // // FormFindLeven // this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.BackColor = System.Drawing.Color.White; this.ClientSize = new System.Drawing.Size(526, 654); this.Controls.Add(this.panel1); this.Controls.Add(this.dgvUsers); this.Controls.Add(this.btnShowAll); this.Controls.Add(this.btnFind); this.Controls.Add(this.groupBox1); this.Controls.Add(this.tbxFind); this.Controls.Add(this.label1); this.Font = new System.Drawing.Font("Comic Sans MS", 9.2F); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.Margin = new System.Windows.Forms.Padding(4); this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "FormFindLeven"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "СУБД \"Агентство недвижимости\""; this.Load += new System.EventHandler(this.FormFindLeven_Load); this.groupBox1.ResumeLayout(false); this.groupBox1.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.dgvUsers)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); this.panel1.ResumeLayout(false); this.panel1.PerformLayout(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Label label1; private System.Windows.Forms.TextBox tbxFind; private System.Windows.Forms.GroupBox groupBox1; private System.Windows.Forms.RadioButton rbtName; private System.Windows.Forms.RadioButton rbtFam; private System.Windows.Forms.Button btnFind; private System.Windows.Forms.Button btnShowAll; private System.Windows.Forms.DataGridView dgvUsers; private System.Windows.Forms.DataGridViewTextBoxColumn Column1; private System.Windows.Forms.DataGridViewTextBoxColumn Column2; private System.Windows.Forms.Label label4; private System.Windows.Forms.PictureBox pictureBox1; private System.Windows.Forms.Panel panel1; } }