Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/branches/HeuristicLab.Optimizer.Tools/3.3/MDSView.Designer.cs @ 7526

Last change on this file since 7526 was 7526, checked in by abeham, 12 years ago

#1780: imported branch

File size: 4.9 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2012 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.Optimizer.Tools {
23  partial class MDSView {
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.visualizeCheckBox = new System.Windows.Forms.CheckBox();
48      this.mdsPictureBox = new System.Windows.Forms.PictureBox();
49      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
50      ((System.ComponentModel.ISupportInitialize)(this.mdsPictureBox)).BeginInit();
51      this.SuspendLayout();
52      //
53      // rowsTextBox
54      //
55      this.errorProvider.SetIconAlignment(this.rowsTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
56      this.errorProvider.SetIconPadding(this.rowsTextBox, 2);
57      this.rowsTextBox.Size = new System.Drawing.Size(282, 20);
58      //
59      // columnsTextBox
60      //
61      this.columnsTextBox.Size = new System.Drawing.Size(282, 20);
62      //
63      // visualizeCheckBox
64      //
65      this.visualizeCheckBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
66      this.visualizeCheckBox.Appearance = System.Windows.Forms.Appearance.Button;
67      this.visualizeCheckBox.Location = new System.Drawing.Point(353, 0);
68      this.visualizeCheckBox.Name = "visualizeCheckBox";
69      this.visualizeCheckBox.Size = new System.Drawing.Size(71, 46);
70      this.visualizeCheckBox.TabIndex = 7;
71      this.visualizeCheckBox.Text = "Visualize";
72      this.visualizeCheckBox.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
73      this.visualizeCheckBox.UseVisualStyleBackColor = true;
74      this.visualizeCheckBox.CheckedChanged += new System.EventHandler(this.visualizeCheckBox_CheckedChanged);
75      //
76      // mdsPictureBox
77      //
78      this.mdsPictureBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
79            | System.Windows.Forms.AnchorStyles.Left)
80            | System.Windows.Forms.AnchorStyles.Right)));
81      this.mdsPictureBox.Location = new System.Drawing.Point(0, 52);
82      this.mdsPictureBox.Name = "mdsPictureBox";
83      this.mdsPictureBox.Size = new System.Drawing.Size(424, 333);
84      this.mdsPictureBox.TabIndex = 8;
85      this.mdsPictureBox.TabStop = false;
86      this.mdsPictureBox.Visible = false;
87      //
88      // MDSView
89      //
90      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
91      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
92      this.Controls.Add(this.mdsPictureBox);
93      this.Controls.Add(this.visualizeCheckBox);
94      this.Name = "MDSView";
95      this.Controls.SetChildIndex(this.visualizeCheckBox, 0);
96      this.Controls.SetChildIndex(this.mdsPictureBox, 0);
97      this.Controls.SetChildIndex(this.statisticsTextBox, 0);
98      this.Controls.SetChildIndex(this.rowsLabel, 0);
99      this.Controls.SetChildIndex(this.columnsLabel, 0);
100      this.Controls.SetChildIndex(this.rowsTextBox, 0);
101      this.Controls.SetChildIndex(this.columnsTextBox, 0);
102      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
103      ((System.ComponentModel.ISupportInitialize)(this.mdsPictureBox)).EndInit();
104      this.ResumeLayout(false);
105      this.PerformLayout();
106
107    }
108
109    #endregion
110
111    private System.Windows.Forms.CheckBox visualizeCheckBox;
112    private System.Windows.Forms.PictureBox mdsPictureBox;
113
114  }
115}
Note: See TracBrowser for help on using the repository browser.