1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2013 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 |
|
---|
22 | namespace HeuristicLab.Analysis.Views {
|
---|
23 | partial class DataTableVisualPropertiesDialog {
|
---|
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 Windows Form 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.okButton = new System.Windows.Forms.Button();
|
---|
48 | this.cancelButton = new System.Windows.Forms.Button();
|
---|
49 | this.tabControl = new System.Windows.Forms.TabControl();
|
---|
50 | this.seriesTabPage = new System.Windows.Forms.TabPage();
|
---|
51 | this.splitContainer = new System.Windows.Forms.SplitContainer();
|
---|
52 | this.downButton = new System.Windows.Forms.Button();
|
---|
53 | this.upButton = new System.Windows.Forms.Button();
|
---|
54 | this.seriesListView = new System.Windows.Forms.ListView();
|
---|
55 | this.dataRowVisualPropertiesControl = new HeuristicLab.Analysis.Views.DataRowVisualPropertiesControl();
|
---|
56 | this.chartTabPage = new System.Windows.Forms.TabPage();
|
---|
57 | this.dataTableVisualPropertiesControl = new HeuristicLab.Analysis.Views.DataTableVisualPropertiesControl();
|
---|
58 | this.tabControl.SuspendLayout();
|
---|
59 | this.seriesTabPage.SuspendLayout();
|
---|
60 | ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
|
---|
61 | this.splitContainer.Panel1.SuspendLayout();
|
---|
62 | this.splitContainer.Panel2.SuspendLayout();
|
---|
63 | this.splitContainer.SuspendLayout();
|
---|
64 | this.chartTabPage.SuspendLayout();
|
---|
65 | this.SuspendLayout();
|
---|
66 | //
|
---|
67 | // okButton
|
---|
68 | //
|
---|
69 | this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
---|
70 | this.okButton.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
---|
71 | this.okButton.Location = new System.Drawing.Point(325, 425);
|
---|
72 | this.okButton.Name = "okButton";
|
---|
73 | this.okButton.Size = new System.Drawing.Size(75, 23);
|
---|
74 | this.okButton.TabIndex = 0;
|
---|
75 | this.okButton.Text = "&OK";
|
---|
76 | this.okButton.UseVisualStyleBackColor = true;
|
---|
77 | this.okButton.Click += new System.EventHandler(this.okButton_Click);
|
---|
78 | //
|
---|
79 | // cancelButton
|
---|
80 | //
|
---|
81 | this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
---|
82 | this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
---|
83 | this.cancelButton.Location = new System.Drawing.Point(406, 425);
|
---|
84 | this.cancelButton.Name = "cancelButton";
|
---|
85 | this.cancelButton.Size = new System.Drawing.Size(75, 23);
|
---|
86 | this.cancelButton.TabIndex = 1;
|
---|
87 | this.cancelButton.Text = "&Cancel";
|
---|
88 | this.cancelButton.UseVisualStyleBackColor = true;
|
---|
89 | this.cancelButton.Click += new System.EventHandler(this.cancelButton_Click);
|
---|
90 | //
|
---|
91 | // tabControl
|
---|
92 | //
|
---|
93 | this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
94 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
95 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
96 | this.tabControl.Controls.Add(this.seriesTabPage);
|
---|
97 | this.tabControl.Controls.Add(this.chartTabPage);
|
---|
98 | this.tabControl.Location = new System.Drawing.Point(12, 12);
|
---|
99 | this.tabControl.Name = "tabControl";
|
---|
100 | this.tabControl.SelectedIndex = 0;
|
---|
101 | this.tabControl.Size = new System.Drawing.Size(469, 407);
|
---|
102 | this.tabControl.TabIndex = 2;
|
---|
103 | //
|
---|
104 | // seriesTabPage
|
---|
105 | //
|
---|
106 | this.seriesTabPage.Controls.Add(this.splitContainer);
|
---|
107 | this.seriesTabPage.Location = new System.Drawing.Point(4, 22);
|
---|
108 | this.seriesTabPage.Name = "seriesTabPage";
|
---|
109 | this.seriesTabPage.Padding = new System.Windows.Forms.Padding(3);
|
---|
110 | this.seriesTabPage.Size = new System.Drawing.Size(461, 381);
|
---|
111 | this.seriesTabPage.TabIndex = 0;
|
---|
112 | this.seriesTabPage.Text = "Series";
|
---|
113 | this.seriesTabPage.UseVisualStyleBackColor = true;
|
---|
114 | //
|
---|
115 | // splitContainer
|
---|
116 | //
|
---|
117 | this.splitContainer.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
118 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
119 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
120 | this.splitContainer.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
|
---|
121 | this.splitContainer.Location = new System.Drawing.Point(0, 0);
|
---|
122 | this.splitContainer.Name = "splitContainer";
|
---|
123 | //
|
---|
124 | // splitContainer.Panel1
|
---|
125 | //
|
---|
126 | this.splitContainer.Panel1.Controls.Add(this.downButton);
|
---|
127 | this.splitContainer.Panel1.Controls.Add(this.upButton);
|
---|
128 | this.splitContainer.Panel1.Controls.Add(this.seriesListView);
|
---|
129 | this.splitContainer.Panel1MinSize = 20;
|
---|
130 | //
|
---|
131 | // splitContainer.Panel2
|
---|
132 | //
|
---|
133 | this.splitContainer.Panel2.Controls.Add(this.dataRowVisualPropertiesControl);
|
---|
134 | this.splitContainer.Panel2MinSize = 50;
|
---|
135 | this.splitContainer.Size = new System.Drawing.Size(461, 381);
|
---|
136 | this.splitContainer.SplitterDistance = 125;
|
---|
137 | this.splitContainer.TabIndex = 0;
|
---|
138 | //
|
---|
139 | // downButton
|
---|
140 | //
|
---|
141 | this.downButton.Enabled = false;
|
---|
142 | this.downButton.Location = new System.Drawing.Point(35, 3);
|
---|
143 | this.downButton.Name = "downButton";
|
---|
144 | this.downButton.Size = new System.Drawing.Size(26, 23);
|
---|
145 | this.downButton.TabIndex = 1;
|
---|
146 | this.downButton.Text = "Down";
|
---|
147 | this.downButton.UseVisualStyleBackColor = true;
|
---|
148 | this.downButton.Click += new System.EventHandler(this.downButton_Click);
|
---|
149 | //
|
---|
150 | // upButton
|
---|
151 | //
|
---|
152 | this.upButton.Enabled = false;
|
---|
153 | this.upButton.Location = new System.Drawing.Point(3, 3);
|
---|
154 | this.upButton.Name = "upButton";
|
---|
155 | this.upButton.Size = new System.Drawing.Size(26, 23);
|
---|
156 | this.upButton.TabIndex = 0;
|
---|
157 | this.upButton.Text = "Up";
|
---|
158 | this.upButton.UseVisualStyleBackColor = true;
|
---|
159 | this.upButton.Click += new System.EventHandler(this.upButton_Click);
|
---|
160 | //
|
---|
161 | // seriesListView
|
---|
162 | //
|
---|
163 | this.seriesListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
164 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
165 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
166 | this.seriesListView.HideSelection = false;
|
---|
167 | this.seriesListView.Location = new System.Drawing.Point(3, 32);
|
---|
168 | this.seriesListView.MultiSelect = false;
|
---|
169 | this.seriesListView.Name = "seriesListView";
|
---|
170 | this.seriesListView.ShowGroups = false;
|
---|
171 | this.seriesListView.Size = new System.Drawing.Size(119, 346);
|
---|
172 | this.seriesListView.TabIndex = 2;
|
---|
173 | this.seriesListView.UseCompatibleStateImageBehavior = false;
|
---|
174 | this.seriesListView.View = System.Windows.Forms.View.List;
|
---|
175 | this.seriesListView.SelectedIndexChanged += new System.EventHandler(this.seriesListView_SelectedIndexChanged);
|
---|
176 | //
|
---|
177 | // dataRowVisualPropertiesControl
|
---|
178 | //
|
---|
179 | this.dataRowVisualPropertiesControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
180 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
181 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
182 | this.dataRowVisualPropertiesControl.Content = null;
|
---|
183 | this.dataRowVisualPropertiesControl.Location = new System.Drawing.Point(3, 26);
|
---|
184 | this.dataRowVisualPropertiesControl.Name = "dataRowVisualPropertiesControl";
|
---|
185 | this.dataRowVisualPropertiesControl.Size = new System.Drawing.Size(326, 352);
|
---|
186 | this.dataRowVisualPropertiesControl.TabIndex = 0;
|
---|
187 | //
|
---|
188 | // chartTabPage
|
---|
189 | //
|
---|
190 | this.chartTabPage.Controls.Add(this.dataTableVisualPropertiesControl);
|
---|
191 | this.chartTabPage.Location = new System.Drawing.Point(4, 22);
|
---|
192 | this.chartTabPage.Name = "chartTabPage";
|
---|
193 | this.chartTabPage.Padding = new System.Windows.Forms.Padding(3);
|
---|
194 | this.chartTabPage.Size = new System.Drawing.Size(461, 381);
|
---|
195 | this.chartTabPage.TabIndex = 1;
|
---|
196 | this.chartTabPage.Text = "Chart";
|
---|
197 | this.chartTabPage.UseVisualStyleBackColor = true;
|
---|
198 | //
|
---|
199 | // dataTableVisualPropertiesControl
|
---|
200 | //
|
---|
201 | this.dataTableVisualPropertiesControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
202 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
203 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
204 | this.dataTableVisualPropertiesControl.Content = null;
|
---|
205 | this.dataTableVisualPropertiesControl.Location = new System.Drawing.Point(3, 6);
|
---|
206 | this.dataTableVisualPropertiesControl.Name = "dataTableVisualPropertiesControl";
|
---|
207 | this.dataTableVisualPropertiesControl.Size = new System.Drawing.Size(455, 372);
|
---|
208 | this.dataTableVisualPropertiesControl.TabIndex = 0;
|
---|
209 | //
|
---|
210 | // DataTableVisualPropertiesDialog
|
---|
211 | //
|
---|
212 | this.AcceptButton = this.okButton;
|
---|
213 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
|
---|
214 | this.CancelButton = this.cancelButton;
|
---|
215 | this.ClientSize = new System.Drawing.Size(493, 460);
|
---|
216 | this.Controls.Add(this.tabControl);
|
---|
217 | this.Controls.Add(this.cancelButton);
|
---|
218 | this.Controls.Add(this.okButton);
|
---|
219 | this.MaximizeBox = false;
|
---|
220 | this.MinimizeBox = false;
|
---|
221 | this.Name = "DataTableVisualPropertiesDialog";
|
---|
222 | this.ShowIcon = false;
|
---|
223 | this.ShowInTaskbar = false;
|
---|
224 | this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
---|
225 | this.Text = "Customize Visual Properties";
|
---|
226 | this.TopMost = true;
|
---|
227 | this.tabControl.ResumeLayout(false);
|
---|
228 | this.seriesTabPage.ResumeLayout(false);
|
---|
229 | this.splitContainer.Panel1.ResumeLayout(false);
|
---|
230 | this.splitContainer.Panel2.ResumeLayout(false);
|
---|
231 | ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
|
---|
232 | this.splitContainer.ResumeLayout(false);
|
---|
233 | this.chartTabPage.ResumeLayout(false);
|
---|
234 | this.ResumeLayout(false);
|
---|
235 |
|
---|
236 | }
|
---|
237 |
|
---|
238 | #endregion
|
---|
239 |
|
---|
240 | private System.Windows.Forms.Button okButton;
|
---|
241 | private System.Windows.Forms.Button cancelButton;
|
---|
242 | private System.Windows.Forms.TabControl tabControl;
|
---|
243 | private System.Windows.Forms.TabPage seriesTabPage;
|
---|
244 | private System.Windows.Forms.SplitContainer splitContainer;
|
---|
245 | private System.Windows.Forms.ListView seriesListView;
|
---|
246 | private System.Windows.Forms.TabPage chartTabPage;
|
---|
247 | private DataRowVisualPropertiesControl dataRowVisualPropertiesControl;
|
---|
248 | private DataTableVisualPropertiesControl dataTableVisualPropertiesControl;
|
---|
249 | private System.Windows.Forms.Button downButton;
|
---|
250 | private System.Windows.Forms.Button upButton;
|
---|
251 | }
|
---|
252 | } |
---|