Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Data/View/ColumnGroupView.Designer.cs @ 6133

Last change on this file since 6133 was 6133, checked in by gkronber, 13 years ago

#1471: imported generic parts of DataImporter from private code base

File size: 15.8 KB
Line 
1namespace HeuristicLab.DataImporter.Data.View {
2  partial class ColumnGroupView {
3    /// <summary>
4    /// Required designer variable.
5    /// </summary>
6    private System.ComponentModel.IContainer components = null;
7
8    /// <summary>
9    /// Clean up any resources being used.
10    /// </summary>
11    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
12    protected override void Dispose(bool disposing) {
13      if (disposing) {
14        if( (components != null))
15          components.Dispose();
16
17        ColumnGroup.Changed -= ColumnGroupChanged;
18        StateChanged = null;
19        Activated = null;               
20
21        dataGridView.ColumnHeaderMouseClick -= dataGridView_ColumnHeaderMouseClick;
22        dataGridView.ColumnWidthChanged -= dataGridView_ColumnWidthChanged;
23        dataGridView.MouseClick -= dataGridView_MouseClick;
24        dataGridView.SelectionChanged -= dataGridView_SelectionChanged;
25        dataGridView.AllowUserToOrderColumnsChanged -= dataGridView_AllowUserToOrderColumnsChanged;       
26        dataGridView.KeyDown -= dataGridView_KeyDown;
27
28        dataGridView.CellValueNeeded -= dataGridView_CellValueNeeded;
29        dataGridView.CellValuePushed -= dataGridView_CellValuePushed;
30        dataGridView.UserDeletingRow -= dataGridView_UserDeletingRow;
31
32        //commented because otherwise dispose crashes while editing a cell
33        //dataGridView.Dispose();
34      }
35      base.Dispose(disposing);
36      System.GC.Collect();
37    }
38
39    #region Component Designer generated code
40
41    /// <summary>
42    /// Required method for Designer support - do not modify
43    /// the contents of this method with the code editor.
44    /// </summary>
45    private void InitializeComponent() {
46      System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
47      System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
48      this.dataGridView = new System.Windows.Forms.DataGridView();
49      this.txtColumnGroupName = new System.Windows.Forms.TextBox();
50      this.splitContainer1 = new System.Windows.Forms.SplitContainer();
51      this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
52      this.label1 = new System.Windows.Forms.Label();
53      this.lblMean = new System.Windows.Forms.Label();
54      this.label5 = new System.Windows.Forms.Label();
55      this.lblMaximum = new System.Windows.Forms.Label();
56      this.label4 = new System.Windows.Forms.Label();
57      this.lblMinimum = new System.Windows.Forms.Label();
58      this.label3 = new System.Windows.Forms.Label();
59      this.lblNullValues = new System.Windows.Forms.Label();
60      this.label2 = new System.Windows.Forms.Label();
61      this.lblValues = new System.Windows.Forms.Label();
62      this.label6 = new System.Windows.Forms.Label();
63      this.label7 = new System.Windows.Forms.Label();
64      this.lblStdDev = new System.Windows.Forms.Label();
65      this.lblMedian = new System.Windows.Forms.Label();
66      ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
67      this.splitContainer1.Panel1.SuspendLayout();
68      this.splitContainer1.Panel2.SuspendLayout();
69      this.splitContainer1.SuspendLayout();
70      this.tableLayoutPanel1.SuspendLayout();
71      this.SuspendLayout();
72      //
73      // dataGridView
74      //
75      this.dataGridView.AllowUserToAddRows = false;
76      this.dataGridView.AllowUserToResizeRows = false;
77      this.dataGridView.ClipboardCopyMode = System.Windows.Forms.DataGridViewClipboardCopyMode.Disable;
78      dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
79      dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
80      dataGridViewCellStyle1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
81      dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
82      dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
83      dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
84      dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
85      this.dataGridView.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
86      this.dataGridView.ColumnHeadersHeight = 45;
87      this.dataGridView.Dock = System.Windows.Forms.DockStyle.Fill;
88      this.dataGridView.Location = new System.Drawing.Point(0, 0);
89      this.dataGridView.MinimumSize = new System.Drawing.Size(400, 0);
90      this.dataGridView.Name = "dataGridView";
91      dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
92      dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Control;
93      dataGridViewCellStyle2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
94      dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.WindowText;
95      dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
96      dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
97      dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
98      this.dataGridView.RowHeadersDefaultCellStyle = dataGridViewCellStyle2;
99      this.dataGridView.RowHeadersWidth = 60;
100      this.dataGridView.Size = new System.Drawing.Size(400, 380);
101      this.dataGridView.TabIndex = 0;
102      //
103      // txtColumnGroupName
104      //
105      this.txtColumnGroupName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
106                  | System.Windows.Forms.AnchorStyles.Right)));
107      this.txtColumnGroupName.ForeColor = System.Drawing.SystemColors.WindowText;
108      this.txtColumnGroupName.Location = new System.Drawing.Point(1, -1);
109      this.txtColumnGroupName.Name = "txtColumnGroupName";
110      this.txtColumnGroupName.ReadOnly = true;
111      this.txtColumnGroupName.Size = new System.Drawing.Size(397, 20);
112      this.txtColumnGroupName.TabIndex = 1;
113      this.txtColumnGroupName.DoubleClick += new System.EventHandler(this.txtColumnGroupName_DoubleClick);
114      this.txtColumnGroupName.Click += new System.EventHandler(this.txtColumnGroupName_Click);
115      this.txtColumnGroupName.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtColumnGroupName_KeyDown);
116      this.txtColumnGroupName.Leave += new System.EventHandler(this.txtColumnGroupName_Leave);
117      //
118      // splitContainer1
119      //
120      this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
121      this.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
122      this.splitContainer1.IsSplitterFixed = true;
123      this.splitContainer1.Location = new System.Drawing.Point(0, 0);
124      this.splitContainer1.Name = "splitContainer1";
125      this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
126      //
127      // splitContainer1.Panel1
128      //
129      this.splitContainer1.Panel1.Controls.Add(this.txtColumnGroupName);
130      this.splitContainer1.Panel1.Controls.Add(this.tableLayoutPanel1);
131      //
132      // splitContainer1.Panel2
133      //
134      this.splitContainer1.Panel2.Controls.Add(this.dataGridView);
135      this.splitContainer1.Size = new System.Drawing.Size(398, 490);
136      this.splitContainer1.SplitterDistance = 106;
137      this.splitContainer1.TabIndex = 2;
138      //
139      // tableLayoutPanel1
140      //
141      this.tableLayoutPanel1.ColumnCount = 4;
142      this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 59F));
143      this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 51.00671F));
144      this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 68F));
145      this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 48.99329F));
146      this.tableLayoutPanel1.Controls.Add(this.label1, 0, 0);
147      this.tableLayoutPanel1.Controls.Add(this.lblMean, 1, 2);
148      this.tableLayoutPanel1.Controls.Add(this.label5, 0, 2);
149      this.tableLayoutPanel1.Controls.Add(this.lblMaximum, 3, 1);
150      this.tableLayoutPanel1.Controls.Add(this.label4, 2, 1);
151      this.tableLayoutPanel1.Controls.Add(this.lblMinimum, 1, 1);
152      this.tableLayoutPanel1.Controls.Add(this.label3, 0, 1);
153      this.tableLayoutPanel1.Controls.Add(this.lblNullValues, 3, 0);
154      this.tableLayoutPanel1.Controls.Add(this.label2, 2, 0);
155      this.tableLayoutPanel1.Controls.Add(this.lblValues, 1, 0);
156      this.tableLayoutPanel1.Controls.Add(this.label6, 0, 3);
157      this.tableLayoutPanel1.Controls.Add(this.label7, 2, 2);
158      this.tableLayoutPanel1.Controls.Add(this.lblStdDev, 3, 2);
159      this.tableLayoutPanel1.Controls.Add(this.lblMedian, 1, 3);
160      this.tableLayoutPanel1.Location = new System.Drawing.Point(-1, 20);
161      this.tableLayoutPanel1.Name = "tableLayoutPanel1";
162      this.tableLayoutPanel1.RowCount = 4;
163      this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
164      this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
165      this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
166      this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
167      this.tableLayoutPanel1.Size = new System.Drawing.Size(401, 78);
168      this.tableLayoutPanel1.TabIndex = 26;
169      //
170      // label1
171      //
172      this.label1.AutoSize = true;
173      this.label1.Location = new System.Drawing.Point(3, 0);
174      this.label1.Name = "label1";
175      this.label1.Size = new System.Drawing.Size(42, 13);
176      this.label1.TabIndex = 14;
177      this.label1.Text = "Values:";
178      //
179      // lblMean
180      //
181      this.lblMean.AutoSize = true;
182      this.lblMean.Location = new System.Drawing.Point(62, 40);
183      this.lblMean.Name = "lblMean";
184      this.lblMean.Size = new System.Drawing.Size(0, 13);
185      this.lblMean.TabIndex = 23;
186      //
187      // label5
188      //
189      this.label5.AutoSize = true;
190      this.label5.Location = new System.Drawing.Point(3, 40);
191      this.label5.Name = "label5";
192      this.label5.Size = new System.Drawing.Size(37, 13);
193      this.label5.TabIndex = 22;
194      this.label5.Text = "Mean:";
195      //
196      // lblMaximum
197      //
198      this.lblMaximum.AutoSize = true;
199      this.lblMaximum.Location = new System.Drawing.Point(269, 20);
200      this.lblMaximum.Name = "lblMaximum";
201      this.lblMaximum.Size = new System.Drawing.Size(0, 13);
202      this.lblMaximum.TabIndex = 21;
203      //
204      // label4
205      //
206      this.label4.AutoSize = true;
207      this.label4.Location = new System.Drawing.Point(201, 20);
208      this.label4.Name = "label4";
209      this.label4.Size = new System.Drawing.Size(54, 13);
210      this.label4.TabIndex = 20;
211      this.label4.Text = "Maximum:";
212      //
213      // lblMinimum
214      //
215      this.lblMinimum.AutoSize = true;
216      this.lblMinimum.Location = new System.Drawing.Point(62, 20);
217      this.lblMinimum.Name = "lblMinimum";
218      this.lblMinimum.Size = new System.Drawing.Size(0, 13);
219      this.lblMinimum.TabIndex = 19;
220      //
221      // label3
222      //
223      this.label3.AutoSize = true;
224      this.label3.Location = new System.Drawing.Point(3, 20);
225      this.label3.Name = "label3";
226      this.label3.Size = new System.Drawing.Size(51, 13);
227      this.label3.TabIndex = 18;
228      this.label3.Text = "Minimum:";
229      //
230      // lblNullValues
231      //
232      this.lblNullValues.AutoSize = true;
233      this.lblNullValues.Location = new System.Drawing.Point(269, 0);
234      this.lblNullValues.Name = "lblNullValues";
235      this.lblNullValues.Size = new System.Drawing.Size(0, 13);
236      this.lblNullValues.TabIndex = 17;
237      //
238      // label2
239      //
240      this.label2.AutoSize = true;
241      this.label2.Location = new System.Drawing.Point(201, 0);
242      this.label2.Name = "label2";
243      this.label2.Size = new System.Drawing.Size(60, 13);
244      this.label2.TabIndex = 16;
245      this.label2.Text = "NullValues:";
246      //
247      // lblValues
248      //
249      this.lblValues.AutoSize = true;
250      this.lblValues.Location = new System.Drawing.Point(62, 0);
251      this.lblValues.Name = "lblValues";
252      this.lblValues.Size = new System.Drawing.Size(0, 13);
253      this.lblValues.TabIndex = 15;
254      //
255      // label6
256      //
257      this.label6.AutoSize = true;
258      this.label6.Location = new System.Drawing.Point(3, 60);
259      this.label6.Name = "label6";
260      this.label6.Size = new System.Drawing.Size(45, 13);
261      this.label6.TabIndex = 24;
262      this.label6.Text = "Median:";
263      //
264      // label7
265      //
266      this.label7.AutoSize = true;
267      this.label7.Location = new System.Drawing.Point(201, 40);
268      this.label7.Name = "label7";
269      this.label7.Size = new System.Drawing.Size(43, 13);
270      this.label7.TabIndex = 26;
271      this.label7.Text = "StdDev";
272      //
273      // lblStdDev
274      //
275      this.lblStdDev.AutoSize = true;
276      this.lblStdDev.Location = new System.Drawing.Point(269, 40);
277      this.lblStdDev.Name = "lblStdDev";
278      this.lblStdDev.Size = new System.Drawing.Size(0, 13);
279      this.lblStdDev.TabIndex = 27;
280      //
281      // lblMedian
282      //
283      this.lblMedian.AutoSize = true;
284      this.lblMedian.Location = new System.Drawing.Point(62, 60);
285      this.lblMedian.Name = "lblMedian";
286      this.lblMedian.Size = new System.Drawing.Size(0, 13);
287      this.lblMedian.TabIndex = 25;
288      //
289      // ColumnGroupView
290      //
291      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
292      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
293      this.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
294      this.Controls.Add(this.splitContainer1);
295      this.MinimumSize = new System.Drawing.Size(400, 2);
296      this.Name = "ColumnGroupView";
297      this.Size = new System.Drawing.Size(398, 490);
298      ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
299      this.splitContainer1.Panel1.ResumeLayout(false);
300      this.splitContainer1.Panel1.PerformLayout();
301      this.splitContainer1.Panel2.ResumeLayout(false);
302      this.splitContainer1.ResumeLayout(false);
303      this.tableLayoutPanel1.ResumeLayout(false);
304      this.tableLayoutPanel1.PerformLayout();
305      this.ResumeLayout(false);
306
307    }
308
309    #endregion
310
311    private System.Windows.Forms.DataGridView dataGridView;
312    private System.Windows.Forms.TextBox txtColumnGroupName;
313    private System.Windows.Forms.SplitContainer splitContainer1;
314    private System.Windows.Forms.Label label1;
315    private System.Windows.Forms.Label lblValues;
316    private System.Windows.Forms.Label label2;
317    private System.Windows.Forms.Label lblNullValues;
318    private System.Windows.Forms.Label label3;
319    private System.Windows.Forms.Label lblMinimum;
320    private System.Windows.Forms.Label label4;
321    private System.Windows.Forms.Label lblMaximum;
322    private System.Windows.Forms.Label label5;
323    private System.Windows.Forms.Label lblMedian;
324    private System.Windows.Forms.Label label6;
325    private System.Windows.Forms.Label lblMean;
326    private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
327    private System.Windows.Forms.Label label7;
328    private System.Windows.Forms.Label lblStdDev;
329  }
330}
Note: See TracBrowser for help on using the repository browser.