Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.DataAnalysis/DatasetView.designer.cs @ 472

Last change on this file since 472 was 472, checked in by gkronber, 16 years ago

fixed #240 by disabling the auto-resizing of row headers.

File size: 10.2 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2008 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.DataAnalysis {
23  partial class DatasetView {
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 Component 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      System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
49      this.rowsTextBox = new System.Windows.Forms.TextBox();
50      this.columnsTextBox = new System.Windows.Forms.TextBox();
51      this.dataGridView = new System.Windows.Forms.DataGridView();
52      this.contextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
53      this.scaleValuesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
54      this.scaleValuesmanuallyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
55      this.showScalingToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
56      this.originalValuesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
57      this.rowsLabel = new System.Windows.Forms.Label();
58      this.columnsLabel = new System.Windows.Forms.Label();
59      this.nameLabel = new System.Windows.Forms.Label();
60      this.nameTextBox = new System.Windows.Forms.TextBox();
61      ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
62      this.contextMenuStrip.SuspendLayout();
63      this.SuspendLayout();
64      //
65      // rowsTextBox
66      //
67      this.rowsTextBox.Location = new System.Drawing.Point(50, 29);
68      this.rowsTextBox.Name = "rowsTextBox";
69      this.rowsTextBox.ReadOnly = true;
70      this.rowsTextBox.Size = new System.Drawing.Size(100, 20);
71      this.rowsTextBox.TabIndex = 1;
72      //
73      // columnsTextBox
74      //
75      this.columnsTextBox.Location = new System.Drawing.Point(217, 29);
76      this.columnsTextBox.Name = "columnsTextBox";
77      this.columnsTextBox.ReadOnly = true;
78      this.columnsTextBox.Size = new System.Drawing.Size(100, 20);
79      this.columnsTextBox.TabIndex = 2;
80      //
81      // dataGridView
82      //
83      this.dataGridView.AllowUserToAddRows = false;
84      this.dataGridView.AllowUserToDeleteRows = false;
85      this.dataGridView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
86                  | System.Windows.Forms.AnchorStyles.Left)
87                  | System.Windows.Forms.AnchorStyles.Right)));
88      this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
89      this.dataGridView.ContextMenuStrip = this.contextMenuStrip;
90      this.dataGridView.Location = new System.Drawing.Point(3, 55);
91      this.dataGridView.Name = "dataGridView";
92      dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
93      dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
94      dataGridViewCellStyle1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
95      dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
96      dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
97      dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
98      dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
99      this.dataGridView.RowHeadersDefaultCellStyle = dataGridViewCellStyle1;
100      this.dataGridView.Size = new System.Drawing.Size(554, 485);
101      this.dataGridView.TabIndex = 3;
102      this.dataGridView.CellValidating += new System.Windows.Forms.DataGridViewCellValidatingEventHandler(this.dataGridView_CellValidating);
103      //
104      // contextMenuStrip
105      //
106      this.contextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
107            this.scaleValuesToolStripMenuItem,
108            this.scaleValuesmanuallyToolStripMenuItem,
109            this.showScalingToolStripMenuItem,
110            this.originalValuesToolStripMenuItem});
111      this.contextMenuStrip.Name = "contextMenuStrip";
112      this.contextMenuStrip.Size = new System.Drawing.Size(187, 92);
113      //
114      // scaleValuesToolStripMenuItem
115      //
116      this.scaleValuesToolStripMenuItem.Name = "scaleValuesToolStripMenuItem";
117      this.scaleValuesToolStripMenuItem.Size = new System.Drawing.Size(186, 22);
118      this.scaleValuesToolStripMenuItem.Text = "Scale values [0..1]";
119      this.scaleValuesToolStripMenuItem.Click += new System.EventHandler(this.scaleValuesToolStripMenuItem_Click);
120      //
121      // scaleValuesmanuallyToolStripMenuItem
122      //
123      this.scaleValuesmanuallyToolStripMenuItem.Name = "scaleValuesmanuallyToolStripMenuItem";
124      this.scaleValuesmanuallyToolStripMenuItem.Size = new System.Drawing.Size(186, 22);
125      this.scaleValuesmanuallyToolStripMenuItem.Text = "Scale values (manually)";
126      this.scaleValuesmanuallyToolStripMenuItem.Click += new System.EventHandler(this.scaleValuesmanuallyToolStripMenuItem_Click);
127      //
128      // showScalingToolStripMenuItem
129      //
130      this.showScalingToolStripMenuItem.Name = "showScalingToolStripMenuItem";
131      this.showScalingToolStripMenuItem.Size = new System.Drawing.Size(186, 22);
132      this.showScalingToolStripMenuItem.Text = "Show scaling...";
133      this.showScalingToolStripMenuItem.Click += new System.EventHandler(this.showScalingToolStripMenuItem_Click);
134      //
135      // originalValuesToolStripMenuItem
136      //
137      this.originalValuesToolStripMenuItem.Name = "originalValuesToolStripMenuItem";
138      this.originalValuesToolStripMenuItem.Size = new System.Drawing.Size(186, 22);
139      this.originalValuesToolStripMenuItem.Text = "Unscale values";
140      this.originalValuesToolStripMenuItem.Click += new System.EventHandler(this.originalValuesToolStripMenuItem_Click);
141      //
142      // rowsLabel
143      //
144      this.rowsLabel.AutoSize = true;
145      this.rowsLabel.Location = new System.Drawing.Point(3, 32);
146      this.rowsLabel.Name = "rowsLabel";
147      this.rowsLabel.Size = new System.Drawing.Size(37, 13);
148      this.rowsLabel.TabIndex = 4;
149      this.rowsLabel.Text = "Rows:";
150      //
151      // columnsLabel
152      //
153      this.columnsLabel.AutoSize = true;
154      this.columnsLabel.Location = new System.Drawing.Point(161, 32);
155      this.columnsLabel.Name = "columnsLabel";
156      this.columnsLabel.Size = new System.Drawing.Size(50, 13);
157      this.columnsLabel.TabIndex = 5;
158      this.columnsLabel.Text = "Columns:";
159      //
160      // nameLabel
161      //
162      this.nameLabel.AutoSize = true;
163      this.nameLabel.Location = new System.Drawing.Point(3, 6);
164      this.nameLabel.Name = "nameLabel";
165      this.nameLabel.Size = new System.Drawing.Size(41, 13);
166      this.nameLabel.TabIndex = 6;
167      this.nameLabel.Text = "Name: ";
168      //
169      // nameTextBox
170      //
171      this.nameTextBox.Location = new System.Drawing.Point(50, 3);
172      this.nameTextBox.Name = "nameTextBox";
173      this.nameTextBox.ReadOnly = true;
174      this.nameTextBox.Size = new System.Drawing.Size(219, 20);
175      this.nameTextBox.TabIndex = 7;
176      //
177      // DatasetView
178      //
179      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
180      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
181      this.Controls.Add(this.nameTextBox);
182      this.Controls.Add(this.nameLabel);
183      this.Controls.Add(this.columnsLabel);
184      this.Controls.Add(this.rowsLabel);
185      this.Controls.Add(this.dataGridView);
186      this.Controls.Add(this.columnsTextBox);
187      this.Controls.Add(this.rowsTextBox);
188      this.Name = "DatasetView";
189      this.Size = new System.Drawing.Size(560, 543);
190      ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
191      this.contextMenuStrip.ResumeLayout(false);
192      this.ResumeLayout(false);
193      this.PerformLayout();
194
195    }
196
197    #endregion
198
199    private System.Windows.Forms.TextBox rowsTextBox;
200    private System.Windows.Forms.TextBox columnsTextBox;
201    private System.Windows.Forms.DataGridView dataGridView;
202    private System.Windows.Forms.Label rowsLabel;
203    private System.Windows.Forms.Label columnsLabel;
204    private System.Windows.Forms.Label nameLabel;
205    private System.Windows.Forms.TextBox nameTextBox;
206    private System.Windows.Forms.ContextMenuStrip contextMenuStrip;
207    private System.Windows.Forms.ToolStripMenuItem scaleValuesToolStripMenuItem;
208    private System.Windows.Forms.ToolStripMenuItem originalValuesToolStripMenuItem;
209    private System.Windows.Forms.ToolStripMenuItem scaleValuesmanuallyToolStripMenuItem;
210    private System.Windows.Forms.ToolStripMenuItem showScalingToolStripMenuItem;
211  }
212}
Note: See TracBrowser for help on using the repository browser.