1 | namespace HeuristicLab.DataPreprocessing {
|
---|
2 | partial class DataPreprocessingView {
|
---|
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 && (components != null)) {
|
---|
14 | components.Dispose();
|
---|
15 | }
|
---|
16 | base.Dispose(disposing);
|
---|
17 | }
|
---|
18 |
|
---|
19 | #region Component Designer generated code
|
---|
20 |
|
---|
21 | /// <summary>
|
---|
22 | /// Required method for Designer support - do not modify
|
---|
23 | /// the contents of this method with the code editor.
|
---|
24 | /// </summary>
|
---|
25 | private void InitializeComponent() {
|
---|
26 | this.components = new System.ComponentModel.Container();
|
---|
27 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DataPreprocessingView));
|
---|
28 | this.splitContainer1 = new System.Windows.Forms.SplitContainer();
|
---|
29 | this.undoButton = new System.Windows.Forms.Button();
|
---|
30 | this.contentListView = new System.Windows.Forms.ListView();
|
---|
31 | this.tryOutAlgorithmButton = new System.Windows.Forms.Button();
|
---|
32 | this.saveButton = new System.Windows.Forms.Button();
|
---|
33 | this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
|
---|
34 | this.toolTip = new System.Windows.Forms.ToolTip(this.components);
|
---|
35 | ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
|
---|
36 | this.splitContainer1.Panel1.SuspendLayout();
|
---|
37 | this.splitContainer1.Panel2.SuspendLayout();
|
---|
38 | this.splitContainer1.SuspendLayout();
|
---|
39 | this.SuspendLayout();
|
---|
40 | //
|
---|
41 | // splitContainer1
|
---|
42 | //
|
---|
43 | this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
44 | this.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
|
---|
45 | this.splitContainer1.Location = new System.Drawing.Point(0, 0);
|
---|
46 | this.splitContainer1.Name = "splitContainer1";
|
---|
47 | //
|
---|
48 | // splitContainer1.Panel1
|
---|
49 | //
|
---|
50 | this.splitContainer1.Panel1.Controls.Add(this.undoButton);
|
---|
51 | this.splitContainer1.Panel1.Controls.Add(this.tryOutAlgorithmButton);
|
---|
52 | this.splitContainer1.Panel1.Controls.Add(this.saveButton);
|
---|
53 | this.splitContainer1.Panel1.Controls.Add(this.contentListView);
|
---|
54 | //
|
---|
55 | // splitContainer1.Panel2
|
---|
56 | //
|
---|
57 | this.splitContainer1.Panel2.Controls.Add(this.viewHost);
|
---|
58 | this.splitContainer1.Size = new System.Drawing.Size(838, 449);
|
---|
59 | this.splitContainer1.SplitterDistance = 181;
|
---|
60 | this.splitContainer1.TabIndex = 0;
|
---|
61 | //
|
---|
62 | // undoButton
|
---|
63 | //
|
---|
64 | this.undoButton.Image = ((System.Drawing.Image)(resources.GetObject("undoButton.Image")));
|
---|
65 | this.undoButton.Location = new System.Drawing.Point(72, 14);
|
---|
66 | this.undoButton.Name = "undoButton";
|
---|
67 | this.undoButton.Size = new System.Drawing.Size(24, 24);
|
---|
68 | this.undoButton.TabIndex = 3;
|
---|
69 | this.toolTip.SetToolTip(this.undoButton, "Undo");
|
---|
70 | this.undoButton.UseVisualStyleBackColor = true;
|
---|
71 | //
|
---|
72 | // contentListView
|
---|
73 | //
|
---|
74 | this.contentListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
75 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
76 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
77 | this.contentListView.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
---|
78 | this.contentListView.Location = new System.Drawing.Point(12, 44);
|
---|
79 | this.contentListView.Name = "contentListView";
|
---|
80 | this.contentListView.Size = new System.Drawing.Size(157, 391);
|
---|
81 | this.contentListView.TabIndex = 0;
|
---|
82 | this.contentListView.UseCompatibleStateImageBehavior = false;
|
---|
83 | this.contentListView.View = System.Windows.Forms.View.List;
|
---|
84 | this.contentListView.SelectedIndexChanged += new System.EventHandler(this.listView1_SelectedIndexChanged);
|
---|
85 | this.contentListView.DoubleClick += new System.EventHandler(this.listView1_DoubleClick);
|
---|
86 | //
|
---|
87 | // tryOutAlgorithmButton
|
---|
88 | //
|
---|
89 | this.tryOutAlgorithmButton.Image = ((System.Drawing.Image)(resources.GetObject("tryOutAlgorithmButton.Image")));
|
---|
90 | this.tryOutAlgorithmButton.Location = new System.Drawing.Point(42, 14);
|
---|
91 | this.tryOutAlgorithmButton.Name = "tryOutAlgorithmButton";
|
---|
92 | this.tryOutAlgorithmButton.Size = new System.Drawing.Size(24, 24);
|
---|
93 | this.tryOutAlgorithmButton.TabIndex = 2;
|
---|
94 | this.toolTip.SetToolTip(this.tryOutAlgorithmButton, "Apply in new tab");
|
---|
95 | this.tryOutAlgorithmButton.UseVisualStyleBackColor = true;
|
---|
96 | this.tryOutAlgorithmButton.Click += new System.EventHandler(this.applyInNewTabButton_Click);
|
---|
97 | //
|
---|
98 | // saveButton
|
---|
99 | //
|
---|
100 | this.saveButton.Image = ((System.Drawing.Image)(resources.GetObject("saveButton.Image")));
|
---|
101 | this.saveButton.Location = new System.Drawing.Point(12, 14);
|
---|
102 | this.saveButton.Name = "saveButton";
|
---|
103 | this.saveButton.Size = new System.Drawing.Size(24, 24);
|
---|
104 | this.saveButton.TabIndex = 1;
|
---|
105 | this.toolTip.SetToolTip(this.saveButton, "Export problem");
|
---|
106 | this.saveButton.UseVisualStyleBackColor = true;
|
---|
107 | this.saveButton.Click += new System.EventHandler(this.exportProblemButton_Click);
|
---|
108 | //
|
---|
109 | // viewHost
|
---|
110 | //
|
---|
111 | this.viewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
112 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
113 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
114 | this.viewHost.Caption = "View";
|
---|
115 | this.viewHost.Content = null;
|
---|
116 | this.viewHost.Enabled = false;
|
---|
117 | this.viewHost.Location = new System.Drawing.Point(16, 44);
|
---|
118 | this.viewHost.Name = "viewHost";
|
---|
119 | this.viewHost.ReadOnly = false;
|
---|
120 | this.viewHost.Size = new System.Drawing.Size(621, 391);
|
---|
121 | this.viewHost.TabIndex = 4;
|
---|
122 | this.viewHost.ViewsLabelVisible = true;
|
---|
123 | this.viewHost.ViewType = null;
|
---|
124 | //
|
---|
125 | // DataPreprocessingView
|
---|
126 | //
|
---|
127 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
128 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
129 | this.Controls.Add(this.splitContainer1);
|
---|
130 | this.Name = "DataPreprocessingView";
|
---|
131 | this.Size = new System.Drawing.Size(838, 449);
|
---|
132 | this.splitContainer1.Panel1.ResumeLayout(false);
|
---|
133 | this.splitContainer1.Panel2.ResumeLayout(false);
|
---|
134 | ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
|
---|
135 | this.splitContainer1.ResumeLayout(false);
|
---|
136 | this.ResumeLayout(false);
|
---|
137 |
|
---|
138 | }
|
---|
139 |
|
---|
140 | #endregion
|
---|
141 |
|
---|
142 | private System.Windows.Forms.ListView contentListView;
|
---|
143 | private System.Windows.Forms.Button saveButton;
|
---|
144 | private System.Windows.Forms.Button tryOutAlgorithmButton;
|
---|
145 | private System.Windows.Forms.Button undoButton;
|
---|
146 | private MainForm.WindowsForms.ViewHost viewHost;
|
---|
147 | private System.Windows.Forms.SplitContainer splitContainer1;
|
---|
148 | private System.Windows.Forms.ToolTip toolTip;
|
---|
149 |
|
---|
150 | }
|
---|
151 | }
|
---|