Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Analysis.Views/3.3/DataTableVisualPropertiesDialog.Designer.cs @ 6628

Last change on this file since 6628 was 6628, checked in by abeham, 13 years ago

#1541, #1603, #1606, #1607

  • merged to trunk
File size: 11.3 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2011 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.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.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
71      this.okButton.Location = new System.Drawing.Point(307, 381);
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(388, 381);
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(0, 0);
99      this.tabControl.Name = "tabControl";
100      this.tabControl.SelectedIndex = 0;
101      this.tabControl.Size = new System.Drawing.Size(474, 374);
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(466, 348);
111      this.seriesTabPage.TabIndex = 0;
112      this.seriesTabPage.Text = "Series";
113      this.seriesTabPage.UseVisualStyleBackColor = true;
114      //
115      // splitContainer
116      //
117      this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
118      this.splitContainer.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
119      this.splitContainer.Location = new System.Drawing.Point(3, 3);
120      this.splitContainer.Name = "splitContainer";
121      //
122      // splitContainer.Panel1
123      //
124      this.splitContainer.Panel1.Controls.Add(this.downButton);
125      this.splitContainer.Panel1.Controls.Add(this.upButton);
126      this.splitContainer.Panel1.Controls.Add(this.seriesListView);
127      this.splitContainer.Panel1MinSize = 20;
128      //
129      // splitContainer.Panel2
130      //
131      this.splitContainer.Panel2.Controls.Add(this.dataRowVisualPropertiesControl);
132      this.splitContainer.Panel2MinSize = 50;
133      this.splitContainer.Size = new System.Drawing.Size(460, 342);
134      this.splitContainer.SplitterDistance = 125;
135      this.splitContainer.TabIndex = 0;
136      //
137      // downButton
138      //
139      this.downButton.Location = new System.Drawing.Point(27, 3);
140      this.downButton.Name = "downButton";
141      this.downButton.Size = new System.Drawing.Size(26, 23);
142      this.downButton.TabIndex = 1;
143      this.downButton.Text = "Down";
144      this.downButton.UseVisualStyleBackColor = true;
145      this.downButton.Click += new System.EventHandler(this.downButton_Click);
146      //
147      // upButton
148      //
149      this.upButton.Location = new System.Drawing.Point(-1, 3);
150      this.upButton.Name = "upButton";
151      this.upButton.Size = new System.Drawing.Size(26, 23);
152      this.upButton.TabIndex = 1;
153      this.upButton.Text = "Up";
154      this.upButton.UseVisualStyleBackColor = true;
155      this.upButton.Click += new System.EventHandler(this.upButton_Click);
156      //
157      // seriesListView
158      //
159      this.seriesListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
160                  | System.Windows.Forms.AnchorStyles.Left)
161                  | System.Windows.Forms.AnchorStyles.Right)));
162      this.seriesListView.HideSelection = false;
163      this.seriesListView.Location = new System.Drawing.Point(0, 28);
164      this.seriesListView.MultiSelect = false;
165      this.seriesListView.Name = "seriesListView";
166      this.seriesListView.ShowGroups = false;
167      this.seriesListView.Size = new System.Drawing.Size(125, 313);
168      this.seriesListView.TabIndex = 0;
169      this.seriesListView.UseCompatibleStateImageBehavior = false;
170      this.seriesListView.View = System.Windows.Forms.View.SmallIcon;
171      this.seriesListView.SelectedIndexChanged += new System.EventHandler(this.seriesListView_SelectedIndexChanged);
172      //
173      // dataRowVisualPropertiesControl
174      //
175      this.dataRowVisualPropertiesControl.Content = null;
176      this.dataRowVisualPropertiesControl.Dock = System.Windows.Forms.DockStyle.Fill;
177      this.dataRowVisualPropertiesControl.Location = new System.Drawing.Point(0, 0);
178      this.dataRowVisualPropertiesControl.Name = "dataRowVisualPropertiesControl";
179      this.dataRowVisualPropertiesControl.Size = new System.Drawing.Size(331, 342);
180      this.dataRowVisualPropertiesControl.TabIndex = 0;
181      //
182      // chartTabPage
183      //
184      this.chartTabPage.Controls.Add(this.dataTableVisualPropertiesControl);
185      this.chartTabPage.Location = new System.Drawing.Point(4, 22);
186      this.chartTabPage.Name = "chartTabPage";
187      this.chartTabPage.Padding = new System.Windows.Forms.Padding(3);
188      this.chartTabPage.Size = new System.Drawing.Size(466, 324);
189      this.chartTabPage.TabIndex = 1;
190      this.chartTabPage.Text = "Chart";
191      this.chartTabPage.UseVisualStyleBackColor = true;
192      //
193      // dataTableVisualPropertiesControl
194      //
195      this.dataTableVisualPropertiesControl.Content = null;
196      this.dataTableVisualPropertiesControl.Dock = System.Windows.Forms.DockStyle.Fill;
197      this.dataTableVisualPropertiesControl.Location = new System.Drawing.Point(3, 3);
198      this.dataTableVisualPropertiesControl.Name = "dataTableVisualPropertiesControl";
199      this.dataTableVisualPropertiesControl.Size = new System.Drawing.Size(460, 318);
200      this.dataTableVisualPropertiesControl.TabIndex = 0;
201      //
202      // DataTableVisualPropertiesDialog
203      //
204      this.AcceptButton = this.okButton;
205      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
206      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
207      this.CancelButton = this.cancelButton;
208      this.ClientSize = new System.Drawing.Size(475, 416);
209      this.Controls.Add(this.tabControl);
210      this.Controls.Add(this.cancelButton);
211      this.Controls.Add(this.okButton);
212      this.Name = "DataTableVisualPropertiesDialog";
213      this.ShowIcon = false;
214      this.Text = "Customize Visual Properties";
215      this.tabControl.ResumeLayout(false);
216      this.seriesTabPage.ResumeLayout(false);
217      this.splitContainer.Panel1.ResumeLayout(false);
218      this.splitContainer.Panel2.ResumeLayout(false);
219      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
220      this.splitContainer.ResumeLayout(false);
221      this.chartTabPage.ResumeLayout(false);
222      this.ResumeLayout(false);
223
224    }
225
226    #endregion
227
228    private System.Windows.Forms.Button okButton;
229    private System.Windows.Forms.Button cancelButton;
230    private System.Windows.Forms.TabControl tabControl;
231    private System.Windows.Forms.TabPage seriesTabPage;
232    private System.Windows.Forms.SplitContainer splitContainer;
233    private System.Windows.Forms.ListView seriesListView;
234    private System.Windows.Forms.TabPage chartTabPage;
235    private DataRowVisualPropertiesControl dataRowVisualPropertiesControl;
236    private DataTableVisualPropertiesControl dataTableVisualPropertiesControl;
237    private System.Windows.Forms.Button downButton;
238    private System.Windows.Forms.Button upButton;
239  }
240}
Note: See TracBrowser for help on using the repository browser.