#region License Information /* HeuristicLab * Copyright (C) 2002-2013 Heuristic and Evolutionary Algorithms Laboratory (HEAL) * * This file is part of HeuristicLab. * * HeuristicLab is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * HeuristicLab is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with HeuristicLab. If not, see . */ #endregion namespace HeuristicLab.DataImporter.DataProcessor { partial class DbTablesView { /// /// 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.components = new System.ComponentModel.Container(); this.listTables = new System.Windows.Forms.ListBox(); this.listTablesContextMenu = new System.Windows.Forms.ContextMenuStrip(this.components); this.selectAllColumnsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.deselectAllColumnsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.gridColumns = new System.Windows.Forms.DataGridView(); this.ColumnName = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.SqlDataType = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.IsSelected = new System.Windows.Forms.DataGridViewCheckBoxColumn(); this.FilterColumn = new System.Windows.Forms.DataGridViewCheckBoxColumn(); this.MinValue = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.MaxValue = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.LikeValue = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.dbColumnBindingSource = new System.Windows.Forms.BindingSource(this.components); this.btnOk = new System.Windows.Forms.Button(); this.btnCancel = new System.Windows.Forms.Button(); this.splitContainer1 = new System.Windows.Forms.SplitContainer(); this.splitContainer2 = new System.Windows.Forms.SplitContainer(); this.lblAffectedRows = new System.Windows.Forms.Label(); this.lblRows = new System.Windows.Forms.Label(); this.btnClearSelection = new System.Windows.Forms.Button(); this.listTablesContextMenu.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.gridColumns)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.dbColumnBindingSource)).BeginInit(); this.splitContainer1.Panel1.SuspendLayout(); this.splitContainer1.Panel2.SuspendLayout(); this.splitContainer1.SuspendLayout(); this.splitContainer2.Panel1.SuspendLayout(); this.splitContainer2.Panel2.SuspendLayout(); this.splitContainer2.SuspendLayout(); this.SuspendLayout(); // // listTables // this.listTables.ContextMenuStrip = this.listTablesContextMenu; this.listTables.Dock = System.Windows.Forms.DockStyle.Fill; this.listTables.FormattingEnabled = true; this.listTables.Location = new System.Drawing.Point(0, 0); this.listTables.Name = "listTables"; this.listTables.Size = new System.Drawing.Size(210, 420); this.listTables.TabIndex = 0; this.listTables.SelectedIndexChanged += new System.EventHandler(this.listTables_SelectedIndexChanged); this.listTables.MouseDown += new System.Windows.Forms.MouseEventHandler(this.listTables_MouseDown); // // listTablesContextMenu // this.listTablesContextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.selectAllColumnsToolStripMenuItem, this.deselectAllColumnsToolStripMenuItem}); this.listTablesContextMenu.Name = "listTablesContextMenu"; this.listTablesContextMenu.Size = new System.Drawing.Size(184, 48); // // selectAllColumnsToolStripMenuItem // this.selectAllColumnsToolStripMenuItem.Name = "selectAllColumnsToolStripMenuItem"; this.selectAllColumnsToolStripMenuItem.Size = new System.Drawing.Size(183, 22); this.selectAllColumnsToolStripMenuItem.Text = "Select All Columns"; this.selectAllColumnsToolStripMenuItem.Click += new System.EventHandler(this.selectAllColumnsToolStripMenuItem_Click); // // deselectAllColumnsToolStripMenuItem // this.deselectAllColumnsToolStripMenuItem.Name = "deselectAllColumnsToolStripMenuItem"; this.deselectAllColumnsToolStripMenuItem.Size = new System.Drawing.Size(183, 22); this.deselectAllColumnsToolStripMenuItem.Text = "Deselect All Columns"; this.deselectAllColumnsToolStripMenuItem.Click += new System.EventHandler(this.deselectAllColumnsToolStripMenuItem_Click); // // gridColumns // this.gridColumns.AllowUserToAddRows = false; this.gridColumns.AllowUserToDeleteRows = false; this.gridColumns.AllowUserToResizeRows = false; this.gridColumns.AutoGenerateColumns = false; this.gridColumns.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; this.gridColumns.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { this.ColumnName, this.SqlDataType, this.IsSelected, this.FilterColumn, this.MinValue, this.MaxValue, this.LikeValue}); this.gridColumns.DataSource = this.dbColumnBindingSource; this.gridColumns.Dock = System.Windows.Forms.DockStyle.Fill; this.gridColumns.Location = new System.Drawing.Point(0, 0); this.gridColumns.MultiSelect = false; this.gridColumns.Name = "gridColumns"; this.gridColumns.RowHeadersVisible = false; this.gridColumns.Size = new System.Drawing.Size(766, 376); this.gridColumns.TabIndex = 1; this.gridColumns.CellPainting += new System.Windows.Forms.DataGridViewCellPaintingEventHandler(this.gridColumns_CellPainting); // // ColumnName // this.ColumnName.DataPropertyName = "ColumnName"; this.ColumnName.HeaderText = "ColumnName"; this.ColumnName.Name = "ColumnName"; this.ColumnName.ReadOnly = true; // // SqlDataType // this.SqlDataType.DataPropertyName = "SqlDataType"; this.SqlDataType.HeaderText = "SqlDataType"; this.SqlDataType.Name = "SqlDataType"; this.SqlDataType.ReadOnly = true; // // IsSelected // this.IsSelected.DataPropertyName = "Selected"; this.IsSelected.HeaderText = "Selected"; this.IsSelected.Name = "IsSelected"; // // FilterColumn // this.FilterColumn.DataPropertyName = "FilterColumn"; this.FilterColumn.HeaderText = "FilterColumn"; this.FilterColumn.Name = "FilterColumn"; // // MinValue // this.MinValue.DataPropertyName = "MinValue"; this.MinValue.HeaderText = "MinValue"; this.MinValue.Name = "MinValue"; // // MaxValue // this.MaxValue.DataPropertyName = "MaxValue"; this.MaxValue.HeaderText = "MaxValue"; this.MaxValue.Name = "MaxValue"; // // LikeValue // this.LikeValue.DataPropertyName = "LikeValue"; this.LikeValue.HeaderText = "LikeValue"; this.LikeValue.Name = "LikeValue"; // // dbColumnBindingSource // this.dbColumnBindingSource.DataSource = typeof(HeuristicLab.DataImporter.DbExplorer.Interfaces.DbColumn); // // btnOk // this.btnOk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnOk.DialogResult = System.Windows.Forms.DialogResult.OK; this.btnOk.Location = new System.Drawing.Point(598, 11); this.btnOk.Name = "btnOk"; this.btnOk.Size = new System.Drawing.Size(75, 23); this.btnOk.TabIndex = 2; this.btnOk.Text = "OK"; this.btnOk.UseVisualStyleBackColor = true; // // btnCancel // this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.btnCancel.Location = new System.Drawing.Point(679, 11); this.btnCancel.Name = "btnCancel"; this.btnCancel.Size = new System.Drawing.Size(75, 23); this.btnCancel.TabIndex = 3; this.btnCancel.Text = "Cancel"; this.btnCancel.UseVisualStyleBackColor = true; // // splitContainer1 // this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill; this.splitContainer1.Location = new System.Drawing.Point(0, 0); this.splitContainer1.Name = "splitContainer1"; // // splitContainer1.Panel1 // this.splitContainer1.Panel1.Controls.Add(this.listTables); // // splitContainer1.Panel2 // this.splitContainer1.Panel2.Controls.Add(this.splitContainer2); this.splitContainer1.Size = new System.Drawing.Size(980, 422); this.splitContainer1.SplitterDistance = 210; this.splitContainer1.TabIndex = 4; this.splitContainer1.SplitterMoved += new System.Windows.Forms.SplitterEventHandler(this.splitContainer1_SplitterMoved); // // splitContainer2 // this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill; this.splitContainer2.FixedPanel = System.Windows.Forms.FixedPanel.Panel2; this.splitContainer2.Location = new System.Drawing.Point(0, 0); this.splitContainer2.Name = "splitContainer2"; this.splitContainer2.Orientation = System.Windows.Forms.Orientation.Horizontal; // // splitContainer2.Panel1 // this.splitContainer2.Panel1.Controls.Add(this.gridColumns); // // splitContainer2.Panel2 // this.splitContainer2.Panel2.Controls.Add(this.lblAffectedRows); this.splitContainer2.Panel2.Controls.Add(this.lblRows); this.splitContainer2.Panel2.Controls.Add(this.btnClearSelection); this.splitContainer2.Panel2.Controls.Add(this.btnOk); this.splitContainer2.Panel2.Controls.Add(this.btnCancel); this.splitContainer2.Size = new System.Drawing.Size(766, 422); this.splitContainer2.SplitterDistance = 376; this.splitContainer2.TabIndex = 4; // // lblAffectedRows // this.lblAffectedRows.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.lblAffectedRows.AutoSize = true; this.lblAffectedRows.Location = new System.Drawing.Point(130, 16); this.lblAffectedRows.Name = "lblAffectedRows"; this.lblAffectedRows.Size = new System.Drawing.Size(111, 13); this.lblAffectedRows.TabIndex = 6; this.lblAffectedRows.Text = "Total selected rows: 0"; // // lblRows // this.lblRows.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.lblRows.AutoSize = true; this.lblRows.Location = new System.Drawing.Point(20, 16); this.lblRows.Name = "lblRows"; this.lblRows.Size = new System.Drawing.Size(46, 13); this.lblRows.TabIndex = 5; this.lblRows.Text = "Rows: 0"; // // btnClearSelection // this.btnClearSelection.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnClearSelection.Location = new System.Drawing.Point(423, 11); this.btnClearSelection.Name = "btnClearSelection"; this.btnClearSelection.Size = new System.Drawing.Size(121, 23); this.btnClearSelection.TabIndex = 4; this.btnClearSelection.Text = "Clear Selection"; this.btnClearSelection.UseVisualStyleBackColor = true; this.btnClearSelection.Click += new System.EventHandler(this.btnClearSelection_Click); // // DbTablesView // this.AcceptButton = this.btnOk; this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.CancelButton = this.btnCancel; this.ClientSize = new System.Drawing.Size(980, 422); this.ControlBox = false; this.Controls.Add(this.splitContainer1); this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "DbTablesView"; this.ShowInTaskbar = false; this.Text = "DataTablesForm"; this.TopMost = true; this.Shown += new System.EventHandler(this.DataTablesForm_Shown); this.listTablesContextMenu.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.gridColumns)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.dbColumnBindingSource)).EndInit(); this.splitContainer1.Panel1.ResumeLayout(false); this.splitContainer1.Panel2.ResumeLayout(false); this.splitContainer1.ResumeLayout(false); this.splitContainer2.Panel1.ResumeLayout(false); this.splitContainer2.Panel2.ResumeLayout(false); this.splitContainer2.Panel2.PerformLayout(); this.splitContainer2.ResumeLayout(false); this.ResumeLayout(false); } #endregion private System.Windows.Forms.ListBox listTables; private System.Windows.Forms.DataGridView gridColumns; private System.Windows.Forms.Button btnOk; private System.Windows.Forms.Button btnCancel; private System.Windows.Forms.SplitContainer splitContainer1; private System.Windows.Forms.SplitContainer splitContainer2; private System.Windows.Forms.Button btnClearSelection; private System.Windows.Forms.ContextMenuStrip listTablesContextMenu; private System.Windows.Forms.ToolStripMenuItem selectAllColumnsToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem deselectAllColumnsToolStripMenuItem; private System.Windows.Forms.BindingSource dbColumnBindingSource; private System.Windows.Forms.Label lblRows; private System.Windows.Forms.Label lblAffectedRows; private System.Windows.Forms.DataGridViewTextBoxColumn ColumnName; private System.Windows.Forms.DataGridViewTextBoxColumn SqlDataType; private System.Windows.Forms.DataGridViewCheckBoxColumn IsSelected; private System.Windows.Forms.DataGridViewCheckBoxColumn FilterColumn; private System.Windows.Forms.DataGridViewTextBoxColumn MinValue; private System.Windows.Forms.DataGridViewTextBoxColumn MaxValue; private System.Windows.Forms.DataGridViewTextBoxColumn LikeValue; } }