Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Data.Views/3.3/StringConvertibleMatrixView.Designer.cs @ 4709

Last change on this file since 4709 was 4709, checked in by mkommend, 14 years ago

Added StatusStrip in StringConvertibleMatrixView to diplay statistical information (ticket #1253).

File size: 10.1 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2010 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.Data.Views {
23  partial class StringConvertibleMatrixView {
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) {
35        if (components != null) 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      this.rowsLabel = new System.Windows.Forms.Label();
49      this.rowsTextBox = new System.Windows.Forms.TextBox();
50      this.dataGridView = new System.Windows.Forms.DataGridView();
51      this.errorProvider = new System.Windows.Forms.ErrorProvider(this.components);
52      this.columnsTextBox = new System.Windows.Forms.TextBox();
53      this.columnsLabel = new System.Windows.Forms.Label();
54      this.contextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
55      this.ShowHideColumns = new System.Windows.Forms.ToolStripMenuItem();
56      this.statusStrip = new System.Windows.Forms.StatusStrip();
57      this.toolStripStatusLabel = new System.Windows.Forms.ToolStripStatusLabel();
58      ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
59      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
60      this.contextMenu.SuspendLayout();
61      this.statusStrip.SuspendLayout();
62      this.SuspendLayout();
63      //
64      // rowsLabel
65      //
66      this.rowsLabel.AutoSize = true;
67      this.rowsLabel.Location = new System.Drawing.Point(3, 3);
68      this.rowsLabel.Name = "rowsLabel";
69      this.rowsLabel.Size = new System.Drawing.Size(37, 13);
70      this.rowsLabel.TabIndex = 0;
71      this.rowsLabel.Text = "&Rows:";
72      //
73      // rowsTextBox
74      //
75      this.rowsTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
76                  | System.Windows.Forms.AnchorStyles.Right)));
77      this.rowsTextBox.Location = new System.Drawing.Point(69, 0);
78      this.rowsTextBox.Name = "rowsTextBox";
79      this.rowsTextBox.Size = new System.Drawing.Size(355, 20);
80      this.rowsTextBox.TabIndex = 1;
81      this.rowsTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.rowsTextBox_KeyDown);
82      this.rowsTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.rowsTextBox_Validating);
83      this.rowsTextBox.Validated += new System.EventHandler(this.rowsTextBox_Validated);
84      //
85      // dataGridView
86      //
87      this.dataGridView.AllowUserToAddRows = false;
88      this.dataGridView.AllowUserToDeleteRows = false;
89      this.dataGridView.AllowUserToOrderColumns = true;
90      this.dataGridView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
91                  | System.Windows.Forms.AnchorStyles.Left)
92                  | System.Windows.Forms.AnchorStyles.Right)));
93      this.dataGridView.ClipboardCopyMode = System.Windows.Forms.DataGridViewClipboardCopyMode.Disable;
94      this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
95      this.dataGridView.Location = new System.Drawing.Point(0, 52);
96      this.dataGridView.Name = "dataGridView";
97      this.dataGridView.RowHeadersWidth = 160;
98      this.dataGridView.Size = new System.Drawing.Size(424, 327);
99      this.dataGridView.TabIndex = 4;
100      this.dataGridView.VirtualMode = true;
101      this.dataGridView.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView_CellEndEdit);
102      this.dataGridView.CellParsing += new System.Windows.Forms.DataGridViewCellParsingEventHandler(this.dataGridView_CellParsing);
103      this.dataGridView.CellValidating += new System.Windows.Forms.DataGridViewCellValidatingEventHandler(this.dataGridView_CellValidating);
104      this.dataGridView.CellValueNeeded += new System.Windows.Forms.DataGridViewCellValueEventHandler(this.dataGridView_CellValueNeeded);
105      this.dataGridView.ColumnHeaderMouseClick += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.dataGridView_ColumnHeaderMouseClick);
106      this.dataGridView.Scroll += new System.Windows.Forms.ScrollEventHandler(this.dataGridView_Scroll);
107      this.dataGridView.SelectionChanged += new System.EventHandler(this.dataGridView_SelectionChanged);
108      this.dataGridView.KeyDown += new System.Windows.Forms.KeyEventHandler(this.dataGridView_KeyDown);
109      this.dataGridView.MouseClick += new System.Windows.Forms.MouseEventHandler(this.dataGridView_MouseClick);
110      this.dataGridView.Resize += new System.EventHandler(this.dataGridView_Resize);
111      //
112      // errorProvider
113      //
114      this.errorProvider.BlinkStyle = System.Windows.Forms.ErrorBlinkStyle.NeverBlink;
115      this.errorProvider.ContainerControl = this;
116      //
117      // columnsTextBox
118      //
119      this.columnsTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
120                  | System.Windows.Forms.AnchorStyles.Right)));
121      this.columnsTextBox.Location = new System.Drawing.Point(69, 26);
122      this.columnsTextBox.Name = "columnsTextBox";
123      this.columnsTextBox.Size = new System.Drawing.Size(355, 20);
124      this.columnsTextBox.TabIndex = 3;
125      this.columnsTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.columnsTextBox_KeyDown);
126      this.columnsTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.columnsTextBox_Validating);
127      this.columnsTextBox.Validated += new System.EventHandler(this.columnsTextBox_Validated);
128      //
129      // columnsLabel
130      //
131      this.columnsLabel.AutoSize = true;
132      this.columnsLabel.Location = new System.Drawing.Point(3, 29);
133      this.columnsLabel.Name = "columnsLabel";
134      this.columnsLabel.Size = new System.Drawing.Size(50, 13);
135      this.columnsLabel.TabIndex = 2;
136      this.columnsLabel.Text = "&Columns:";
137      //
138      // contextMenu
139      //
140      this.contextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
141            this.ShowHideColumns});
142      this.contextMenu.Name = "contextMenu";
143      this.contextMenu.Size = new System.Drawing.Size(191, 26);
144      //
145      // ShowHideColumns
146      //
147      this.ShowHideColumns.Name = "ShowHideColumns";
148      this.ShowHideColumns.Size = new System.Drawing.Size(190, 22);
149      this.ShowHideColumns.Text = "Show / Hide Columns";
150      this.ShowHideColumns.Click += new System.EventHandler(this.ShowHideColumns_Click);
151      //
152      // statusStrip1
153      //
154      this.statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
155            this.toolStripStatusLabel});
156      this.statusStrip.Location = new System.Drawing.Point(0, 382);
157      this.statusStrip.Name = "statusStrip1";
158      this.statusStrip.Size = new System.Drawing.Size(424, 22);
159      this.statusStrip.TabIndex = 5;
160      this.statusStrip.Text = "statusStrip1";
161      //
162      // toolStripStatusLabel
163      //
164      this.toolStripStatusLabel.Name = "toolStripStatusLabel";
165      this.toolStripStatusLabel.Size = new System.Drawing.Size(378, 17);
166      this.toolStripStatusLabel.Spring = true;
167      //
168      // StringConvertibleMatrixView
169      //
170      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
171      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
172      this.Controls.Add(this.statusStrip);
173      this.Controls.Add(this.dataGridView);
174      this.Controls.Add(this.columnsTextBox);
175      this.Controls.Add(this.rowsTextBox);
176      this.Controls.Add(this.columnsLabel);
177      this.Controls.Add(this.rowsLabel);
178      this.Name = "StringConvertibleMatrixView";
179      this.Size = new System.Drawing.Size(424, 404);
180      ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
181      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
182      this.contextMenu.ResumeLayout(false);
183      this.statusStrip.ResumeLayout(false);
184      this.statusStrip.PerformLayout();
185      this.ResumeLayout(false);
186      this.PerformLayout();
187
188    }
189    #endregion
190
191    protected System.Windows.Forms.Label rowsLabel;
192    protected System.Windows.Forms.TextBox rowsTextBox;
193    protected System.Windows.Forms.ErrorProvider errorProvider;
194    protected System.Windows.Forms.TextBox columnsTextBox;
195    protected System.Windows.Forms.Label columnsLabel;
196    protected System.Windows.Forms.ContextMenuStrip contextMenu;
197    protected System.Windows.Forms.ToolStripMenuItem ShowHideColumns;
198    protected System.Windows.Forms.DataGridView dataGridView;
199    private System.Windows.Forms.StatusStrip statusStrip;
200    private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel;
201
202  }
203}
Note: See TracBrowser for help on using the repository browser.