using System.Windows.Forms; namespace GuiDbEngine { partial class CSelectorGrid { /// /// 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 Component Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.components = new System.ComponentModel.Container(); this.contextMenuStrip = new System.Windows.Forms.ContextMenuStrip( this.components ); this.toolStripMenuItemCopy = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripMenuItemSelectAll = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); this.toolStripMenuItemCreate = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripMenuItemEdit = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripMenuItemDelete = new System.Windows.Forms.ToolStripMenuItem(); this.SearchLabel = new System.Windows.Forms.Label(); this.panel1 = new System.Windows.Forms.Panel(); this.textBoxFind = new ExtendedControls.EditBoxExt(); this.m_dataGridView = new DataGridView(); this.contextMenuStrip.SuspendLayout(); this.panel1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.m_dataGridView)).BeginInit(); this.SuspendLayout(); // // contextMenuStrip // this.contextMenuStrip.Items.AddRange( new System.Windows.Forms.ToolStripItem[] { this.toolStripMenuItemCopy, this.toolStripMenuItemSelectAll, this.toolStripSeparator1, this.toolStripMenuItemCreate, this.toolStripMenuItemEdit, this.toolStripMenuItemDelete} ); this.contextMenuStrip.Name = "contextMenuStrip"; this.contextMenuStrip.Size = new System.Drawing.Size( 214, 120 ); this.contextMenuStrip.Text = "Редактирование"; // // toolStripMenuItemCopy // this.toolStripMenuItemCopy.Name = "toolStripMenuItemCopy"; this.toolStripMenuItemCopy.Size = new System.Drawing.Size( 213, 22 ); this.toolStripMenuItemCopy.Text = "Копировать"; this.toolStripMenuItemCopy.Click += new System.EventHandler( this.toolStripMenuItemCopy_Click ); // // toolStripMenuItemSelectAll // this.toolStripMenuItemSelectAll.Name = "toolStripMenuItemSelectAll"; this.toolStripMenuItemSelectAll.Size = new System.Drawing.Size( 213, 22 ); this.toolStripMenuItemSelectAll.Text = "Выделить всё"; this.toolStripMenuItemSelectAll.Click += new System.EventHandler( this.toolStripMenuItemSelectAll_Click ); // // toolStripSeparator1 // this.toolStripSeparator1.Name = "toolStripSeparator1"; this.toolStripSeparator1.Size = new System.Drawing.Size( 210, 6 ); // // toolStripMenuItemCreate // this.toolStripMenuItemCreate.Name = "toolStripMenuItemCreate"; this.toolStripMenuItemCreate.Size = new System.Drawing.Size( 213, 22 ); this.toolStripMenuItemCreate.Text = "Создать (добавить)"; this.toolStripMenuItemCreate.Click += new System.EventHandler( this.toolStripMenuItemCreate_Click ); // // toolStripMenuItemEdit // this.toolStripMenuItemEdit.Name = "toolStripMenuItemEdit"; this.toolStripMenuItemEdit.Size = new System.Drawing.Size( 213, 22 ); this.toolStripMenuItemEdit.Text = "Изменить (редактировать)"; // // toolStripMenuItemDelete // this.toolStripMenuItemDelete.Name = "toolStripMenuItemDelete"; this.toolStripMenuItemDelete.Size = new System.Drawing.Size( 213, 22 ); this.toolStripMenuItemDelete.Text = "Удалить"; this.toolStripMenuItemDelete.TextDirection = System.Windows.Forms.ToolStripTextDirection.Horizontal; this.toolStripMenuItemDelete.Click += new System.EventHandler( this.toolStripMenuItemDelete_Click ); // // SearchLabel // this.SearchLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.SearchLabel.AutoSize = true; this.SearchLabel.Location = new System.Drawing.Point( 3, 2 ); this.SearchLabel.Name = "SearchLabel"; this.SearchLabel.Size = new System.Drawing.Size( 38, 13 ); this.SearchLabel.TabIndex = 2; this.SearchLabel.Text = "Найти"; // // panel1 // this.panel1.Controls.Add( this.textBoxFind ); this.panel1.Controls.Add( this.SearchLabel ); this.panel1.Dock = System.Windows.Forms.DockStyle.Bottom; this.panel1.Location = new System.Drawing.Point( 0, 259 ); this.panel1.Name = "panel1"; this.panel1.Size = new System.Drawing.Size( 397, 41 ); this.panel1.TabIndex = 5; // // textBoxFind // this.textBoxFind.Dock = System.Windows.Forms.DockStyle.Bottom; this.textBoxFind.Location = new System.Drawing.Point( 0, 21 ); this.textBoxFind.Name = "textBoxFind"; this.textBoxFind.Size = new System.Drawing.Size( 397, 20 ); this.textBoxFind.TabIndex = 3; this.textBoxFind.TextChanged += new System.EventHandler( this.textBoxFind_TextChanged ); this.textBoxFind.OnEnterPressed += new System.EventHandler( this.textBoxFind_OnEnterPressed ); // // m_dataGridView // this.m_dataGridView.AllowUserToAddRows = false; this.m_dataGridView.AllowUserToDeleteRows = false; this.m_dataGridView.AllowUserToOrderColumns = true; this.m_dataGridView.AllowUserToResizeRows = false; this.m_dataGridView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.m_dataGridView.BorderStyle = System.Windows.Forms.BorderStyle.None; this.m_dataGridView.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Sunken; this.m_dataGridView.ContextMenuStrip = this.contextMenuStrip; this.m_dataGridView.EditMode = System.Windows.Forms.DataGridViewEditMode.EditProgrammatically; this.m_dataGridView.GridColor = System.Drawing.SystemColors.Control; this.m_dataGridView.Location = new System.Drawing.Point( 0, 0 ); this.m_dataGridView.Name = "m_dataGridView"; this.m_dataGridView.ReadOnly = true; this.m_dataGridView.RowHeadersVisible = false; this.m_dataGridView.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect; this.m_dataGridView.Size = new System.Drawing.Size( 397, 261 ); this.m_dataGridView.TabIndex = 0; this.m_dataGridView.RowEnter += new System.Windows.Forms.DataGridViewCellEventHandler( this.m_dataGridView_RowEnter ); this.m_dataGridView.DoubleClick += new System.EventHandler( this.m_dataGridView_DoubleClick ); this.m_dataGridView.KeyUp += new System.Windows.Forms.KeyEventHandler( this.m_dataGridView_KeyUp ); // // CSelectorGridAbstract // this.AutoScaleDimensions = new System.Drawing.SizeF( 6F, 13F ); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; this.Controls.Add( this.panel1 ); this.Controls.Add( this.m_dataGridView ); this.Margin = new System.Windows.Forms.Padding( 2 ); this.Name = "CSelectorGridAbstract"; this.Size = new System.Drawing.Size( 397, 300 ); this.contextMenuStrip.ResumeLayout( false ); this.panel1.ResumeLayout( false ); this.panel1.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.m_dataGridView)).EndInit(); this.ResumeLayout( false ); } #endregion private System.Windows.Forms.ContextMenuStrip contextMenuStrip; private System.Windows.Forms.ToolStripMenuItem toolStripMenuItemCopy; private System.Windows.Forms.ToolStripMenuItem toolStripMenuItemCreate; private System.Windows.Forms.ToolStripSeparator toolStripSeparator1; private System.Windows.Forms.ToolStripMenuItem toolStripMenuItemDelete; private System.Windows.Forms.ToolStripMenuItem toolStripMenuItemEdit; private System.Windows.Forms.Panel panel1; private System.Windows.Forms.ToolStripMenuItem toolStripMenuItemSelectAll; protected System.Windows.Forms.Label SearchLabel; private ExtendedControls.EditBoxExt textBoxFind; } }