Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.DataProcessor/DbTablesView.Designer.cs @ 11653

Last change on this file since 11653 was 9615, checked in by mkommend, 11 years ago

#1734: Updated copyright information in all DataImporter classes.

File size: 15.6 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2013 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22namespace HeuristicLab.DataImporter.DataProcessor {
23  partial class DbTablesView {
24    /// <summary>
25    /// Required designer variable.
26    /// </summary>
27    private System.ComponentModel.IContainer components = null;
28
29    /// <summary>
30    /// Clean up any resources being used.
31    /// </summary>
32    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
33    protected override void Dispose(bool disposing) {
34      if (disposing && (components != null)) {
35        components.Dispose();
36      }
37      base.Dispose(disposing);
38    }
39
40    #region Windows Form Designer generated code
41
42    /// <summary>
43    /// Required method for Designer support - do not modify
44    /// the contents of this method with the code editor.
45    /// </summary>
46    private void InitializeComponent() {
47      this.components = new System.ComponentModel.Container();
48      this.listTables = new System.Windows.Forms.ListBox();
49      this.listTablesContextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
50      this.selectAllColumnsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
51      this.deselectAllColumnsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
52      this.gridColumns = new System.Windows.Forms.DataGridView();
53      this.ColumnName = new System.Windows.Forms.DataGridViewTextBoxColumn();
54      this.SqlDataType = new System.Windows.Forms.DataGridViewTextBoxColumn();
55      this.IsSelected = new System.Windows.Forms.DataGridViewCheckBoxColumn();
56      this.FilterColumn = new System.Windows.Forms.DataGridViewCheckBoxColumn();
57      this.MinValue = new System.Windows.Forms.DataGridViewTextBoxColumn();
58      this.MaxValue = new System.Windows.Forms.DataGridViewTextBoxColumn();
59      this.LikeValue = new System.Windows.Forms.DataGridViewTextBoxColumn();
60      this.dbColumnBindingSource = new System.Windows.Forms.BindingSource(this.components);
61      this.btnOk = new System.Windows.Forms.Button();
62      this.btnCancel = new System.Windows.Forms.Button();
63      this.splitContainer1 = new System.Windows.Forms.SplitContainer();
64      this.splitContainer2 = new System.Windows.Forms.SplitContainer();
65      this.lblAffectedRows = new System.Windows.Forms.Label();
66      this.lblRows = new System.Windows.Forms.Label();
67      this.btnClearSelection = new System.Windows.Forms.Button();
68      this.listTablesContextMenu.SuspendLayout();
69      ((System.ComponentModel.ISupportInitialize)(this.gridColumns)).BeginInit();
70      ((System.ComponentModel.ISupportInitialize)(this.dbColumnBindingSource)).BeginInit();
71      this.splitContainer1.Panel1.SuspendLayout();
72      this.splitContainer1.Panel2.SuspendLayout();
73      this.splitContainer1.SuspendLayout();
74      this.splitContainer2.Panel1.SuspendLayout();
75      this.splitContainer2.Panel2.SuspendLayout();
76      this.splitContainer2.SuspendLayout();
77      this.SuspendLayout();
78      //
79      // listTables
80      //
81      this.listTables.ContextMenuStrip = this.listTablesContextMenu;
82      this.listTables.Dock = System.Windows.Forms.DockStyle.Fill;
83      this.listTables.FormattingEnabled = true;
84      this.listTables.Location = new System.Drawing.Point(0, 0);
85      this.listTables.Name = "listTables";
86      this.listTables.Size = new System.Drawing.Size(210, 420);
87      this.listTables.TabIndex = 0;
88      this.listTables.SelectedIndexChanged += new System.EventHandler(this.listTables_SelectedIndexChanged);
89      this.listTables.MouseDown += new System.Windows.Forms.MouseEventHandler(this.listTables_MouseDown);
90      //
91      // listTablesContextMenu
92      //
93      this.listTablesContextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
94            this.selectAllColumnsToolStripMenuItem,
95            this.deselectAllColumnsToolStripMenuItem});
96      this.listTablesContextMenu.Name = "listTablesContextMenu";
97      this.listTablesContextMenu.Size = new System.Drawing.Size(184, 48);
98      //
99      // selectAllColumnsToolStripMenuItem
100      //
101      this.selectAllColumnsToolStripMenuItem.Name = "selectAllColumnsToolStripMenuItem";
102      this.selectAllColumnsToolStripMenuItem.Size = new System.Drawing.Size(183, 22);
103      this.selectAllColumnsToolStripMenuItem.Text = "Select All Columns";
104      this.selectAllColumnsToolStripMenuItem.Click += new System.EventHandler(this.selectAllColumnsToolStripMenuItem_Click);
105      //
106      // deselectAllColumnsToolStripMenuItem
107      //
108      this.deselectAllColumnsToolStripMenuItem.Name = "deselectAllColumnsToolStripMenuItem";
109      this.deselectAllColumnsToolStripMenuItem.Size = new System.Drawing.Size(183, 22);
110      this.deselectAllColumnsToolStripMenuItem.Text = "Deselect All Columns";
111      this.deselectAllColumnsToolStripMenuItem.Click += new System.EventHandler(this.deselectAllColumnsToolStripMenuItem_Click);
112      //
113      // gridColumns
114      //
115      this.gridColumns.AllowUserToAddRows = false;
116      this.gridColumns.AllowUserToDeleteRows = false;
117      this.gridColumns.AllowUserToResizeRows = false;
118      this.gridColumns.AutoGenerateColumns = false;
119      this.gridColumns.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
120      this.gridColumns.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
121            this.ColumnName,
122            this.SqlDataType,
123            this.IsSelected,
124            this.FilterColumn,
125            this.MinValue,
126            this.MaxValue,
127            this.LikeValue});
128      this.gridColumns.DataSource = this.dbColumnBindingSource;
129      this.gridColumns.Dock = System.Windows.Forms.DockStyle.Fill;
130      this.gridColumns.Location = new System.Drawing.Point(0, 0);
131      this.gridColumns.MultiSelect = false;
132      this.gridColumns.Name = "gridColumns";
133      this.gridColumns.RowHeadersVisible = false;
134      this.gridColumns.Size = new System.Drawing.Size(766, 376);
135      this.gridColumns.TabIndex = 1;
136      this.gridColumns.CellPainting += new System.Windows.Forms.DataGridViewCellPaintingEventHandler(this.gridColumns_CellPainting);
137      //
138      // ColumnName
139      //
140      this.ColumnName.DataPropertyName = "ColumnName";
141      this.ColumnName.HeaderText = "ColumnName";
142      this.ColumnName.Name = "ColumnName";
143      this.ColumnName.ReadOnly = true;
144      //
145      // SqlDataType
146      //
147      this.SqlDataType.DataPropertyName = "SqlDataType";
148      this.SqlDataType.HeaderText = "SqlDataType";
149      this.SqlDataType.Name = "SqlDataType";
150      this.SqlDataType.ReadOnly = true;
151      //
152      // IsSelected
153      //
154      this.IsSelected.DataPropertyName = "Selected";
155      this.IsSelected.HeaderText = "Selected";
156      this.IsSelected.Name = "IsSelected";
157      //
158      // FilterColumn
159      //
160      this.FilterColumn.DataPropertyName = "FilterColumn";
161      this.FilterColumn.HeaderText = "FilterColumn";
162      this.FilterColumn.Name = "FilterColumn";
163      //
164      // MinValue
165      //
166      this.MinValue.DataPropertyName = "MinValue";
167      this.MinValue.HeaderText = "MinValue";
168      this.MinValue.Name = "MinValue";
169      //
170      // MaxValue
171      //
172      this.MaxValue.DataPropertyName = "MaxValue";
173      this.MaxValue.HeaderText = "MaxValue";
174      this.MaxValue.Name = "MaxValue";
175      //
176      // LikeValue
177      //
178      this.LikeValue.DataPropertyName = "LikeValue";
179      this.LikeValue.HeaderText = "LikeValue";
180      this.LikeValue.Name = "LikeValue";
181      //
182      // dbColumnBindingSource
183      //
184      this.dbColumnBindingSource.DataSource = typeof(HeuristicLab.DataImporter.DbExplorer.Interfaces.DbColumn);
185      //
186      // btnOk
187      //
188      this.btnOk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
189      this.btnOk.DialogResult = System.Windows.Forms.DialogResult.OK;
190      this.btnOk.Location = new System.Drawing.Point(598, 11);
191      this.btnOk.Name = "btnOk";
192      this.btnOk.Size = new System.Drawing.Size(75, 23);
193      this.btnOk.TabIndex = 2;
194      this.btnOk.Text = "OK";
195      this.btnOk.UseVisualStyleBackColor = true;
196      //
197      // btnCancel
198      //
199      this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
200      this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
201      this.btnCancel.Location = new System.Drawing.Point(679, 11);
202      this.btnCancel.Name = "btnCancel";
203      this.btnCancel.Size = new System.Drawing.Size(75, 23);
204      this.btnCancel.TabIndex = 3;
205      this.btnCancel.Text = "Cancel";
206      this.btnCancel.UseVisualStyleBackColor = true;
207      //
208      // splitContainer1
209      //
210      this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
211      this.splitContainer1.Location = new System.Drawing.Point(0, 0);
212      this.splitContainer1.Name = "splitContainer1";
213      //
214      // splitContainer1.Panel1
215      //
216      this.splitContainer1.Panel1.Controls.Add(this.listTables);
217      //
218      // splitContainer1.Panel2
219      //
220      this.splitContainer1.Panel2.Controls.Add(this.splitContainer2);
221      this.splitContainer1.Size = new System.Drawing.Size(980, 422);
222      this.splitContainer1.SplitterDistance = 210;
223      this.splitContainer1.TabIndex = 4;
224      this.splitContainer1.SplitterMoved += new System.Windows.Forms.SplitterEventHandler(this.splitContainer1_SplitterMoved);
225      //
226      // splitContainer2
227      //
228      this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
229      this.splitContainer2.FixedPanel = System.Windows.Forms.FixedPanel.Panel2;
230      this.splitContainer2.Location = new System.Drawing.Point(0, 0);
231      this.splitContainer2.Name = "splitContainer2";
232      this.splitContainer2.Orientation = System.Windows.Forms.Orientation.Horizontal;
233      //
234      // splitContainer2.Panel1
235      //
236      this.splitContainer2.Panel1.Controls.Add(this.gridColumns);
237      //
238      // splitContainer2.Panel2
239      //
240      this.splitContainer2.Panel2.Controls.Add(this.lblAffectedRows);
241      this.splitContainer2.Panel2.Controls.Add(this.lblRows);
242      this.splitContainer2.Panel2.Controls.Add(this.btnClearSelection);
243      this.splitContainer2.Panel2.Controls.Add(this.btnOk);
244      this.splitContainer2.Panel2.Controls.Add(this.btnCancel);
245      this.splitContainer2.Size = new System.Drawing.Size(766, 422);
246      this.splitContainer2.SplitterDistance = 376;
247      this.splitContainer2.TabIndex = 4;
248      //
249      // lblAffectedRows
250      //
251      this.lblAffectedRows.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
252      this.lblAffectedRows.AutoSize = true;
253      this.lblAffectedRows.Location = new System.Drawing.Point(130, 16);
254      this.lblAffectedRows.Name = "lblAffectedRows";
255      this.lblAffectedRows.Size = new System.Drawing.Size(111, 13);
256      this.lblAffectedRows.TabIndex = 6;
257      this.lblAffectedRows.Text = "Total selected rows: 0";
258      //
259      // lblRows
260      //
261      this.lblRows.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
262      this.lblRows.AutoSize = true;
263      this.lblRows.Location = new System.Drawing.Point(20, 16);
264      this.lblRows.Name = "lblRows";
265      this.lblRows.Size = new System.Drawing.Size(46, 13);
266      this.lblRows.TabIndex = 5;
267      this.lblRows.Text = "Rows: 0";
268      //
269      // btnClearSelection
270      //
271      this.btnClearSelection.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
272      this.btnClearSelection.Location = new System.Drawing.Point(423, 11);
273      this.btnClearSelection.Name = "btnClearSelection";
274      this.btnClearSelection.Size = new System.Drawing.Size(121, 23);
275      this.btnClearSelection.TabIndex = 4;
276      this.btnClearSelection.Text = "Clear Selection";
277      this.btnClearSelection.UseVisualStyleBackColor = true;
278      this.btnClearSelection.Click += new System.EventHandler(this.btnClearSelection_Click);
279      //
280      // DbTablesView
281      //
282      this.AcceptButton = this.btnOk;
283      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
284      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
285      this.CancelButton = this.btnCancel;
286      this.ClientSize = new System.Drawing.Size(980, 422);
287      this.ControlBox = false;
288      this.Controls.Add(this.splitContainer1);
289      this.MaximizeBox = false;
290      this.MinimizeBox = false;
291      this.Name = "DbTablesView";
292      this.ShowInTaskbar = false;
293      this.Text = "DataTablesForm";
294      this.TopMost = true;
295      this.Shown += new System.EventHandler(this.DataTablesForm_Shown);
296      this.listTablesContextMenu.ResumeLayout(false);
297      ((System.ComponentModel.ISupportInitialize)(this.gridColumns)).EndInit();
298      ((System.ComponentModel.ISupportInitialize)(this.dbColumnBindingSource)).EndInit();
299      this.splitContainer1.Panel1.ResumeLayout(false);
300      this.splitContainer1.Panel2.ResumeLayout(false);
301      this.splitContainer1.ResumeLayout(false);
302      this.splitContainer2.Panel1.ResumeLayout(false);
303      this.splitContainer2.Panel2.ResumeLayout(false);
304      this.splitContainer2.Panel2.PerformLayout();
305      this.splitContainer2.ResumeLayout(false);
306      this.ResumeLayout(false);
307
308    }
309
310    #endregion
311
312    private System.Windows.Forms.ListBox listTables;
313    private System.Windows.Forms.DataGridView gridColumns;
314    private System.Windows.Forms.Button btnOk;
315    private System.Windows.Forms.Button btnCancel;
316    private System.Windows.Forms.SplitContainer splitContainer1;
317    private System.Windows.Forms.SplitContainer splitContainer2;
318    private System.Windows.Forms.Button btnClearSelection;
319    private System.Windows.Forms.ContextMenuStrip listTablesContextMenu;
320    private System.Windows.Forms.ToolStripMenuItem selectAllColumnsToolStripMenuItem;
321    private System.Windows.Forms.ToolStripMenuItem deselectAllColumnsToolStripMenuItem;
322    private System.Windows.Forms.BindingSource dbColumnBindingSource;
323    private System.Windows.Forms.Label lblRows;
324    private System.Windows.Forms.Label lblAffectedRows;
325    private System.Windows.Forms.DataGridViewTextBoxColumn ColumnName;
326    private System.Windows.Forms.DataGridViewTextBoxColumn SqlDataType;
327    private System.Windows.Forms.DataGridViewCheckBoxColumn IsSelected;
328    private System.Windows.Forms.DataGridViewCheckBoxColumn FilterColumn;
329    private System.Windows.Forms.DataGridViewTextBoxColumn MinValue;
330    private System.Windows.Forms.DataGridViewTextBoxColumn MaxValue;
331    private System.Windows.Forms.DataGridViewTextBoxColumn LikeValue;
332  }
333}
Note: See TracBrowser for help on using the repository browser.