Free cookie consent management tool by TermsFeed Policy Generator

source: branches/histogram/HeuristicLab.Analysis.Views/3.3/DataTableVisualPropertiesDialog.Designer.cs @ 6012

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

#1465

  • fine tuned UI for setting data(table|row) visual properties
  • added control for the data table visual properties
  • added a few more visual properties
File size: 9.7 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.seriesListView = new System.Windows.Forms.ListView();
53      this.chartTabPage = new System.Windows.Forms.TabPage();
54      this.dataRowVisualPropertiesControl = new HeuristicLab.Analysis.Views.DataRowVisualPropertiesControl();
55      this.dataTableVisualPropertiesControl = new HeuristicLab.Analysis.Views.DataTableVisualPropertiesControl();
56      this.tabControl.SuspendLayout();
57      this.seriesTabPage.SuspendLayout();
58      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
59      this.splitContainer.Panel1.SuspendLayout();
60      this.splitContainer.Panel2.SuspendLayout();
61      this.splitContainer.SuspendLayout();
62      this.chartTabPage.SuspendLayout();
63      this.SuspendLayout();
64      //
65      // okButton
66      //
67      this.okButton.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
68      this.okButton.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
69      this.okButton.Location = new System.Drawing.Point(152, 324);
70      this.okButton.Name = "okButton";
71      this.okButton.Size = new System.Drawing.Size(75, 23);
72      this.okButton.TabIndex = 0;
73      this.okButton.Text = "Ok";
74      this.okButton.UseVisualStyleBackColor = true;
75      this.okButton.Click += new System.EventHandler(this.okButton_Click);
76      //
77      // cancelButton
78      //
79      this.cancelButton.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
80      this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
81      this.cancelButton.Location = new System.Drawing.Point(233, 324);
82      this.cancelButton.Name = "cancelButton";
83      this.cancelButton.Size = new System.Drawing.Size(75, 23);
84      this.cancelButton.TabIndex = 1;
85      this.cancelButton.Text = "Cancel";
86      this.cancelButton.UseVisualStyleBackColor = true;
87      this.cancelButton.Click += new System.EventHandler(this.cancelButton_Click);
88      //
89      // tabControl
90      //
91      this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
92                  | System.Windows.Forms.AnchorStyles.Left)
93                  | System.Windows.Forms.AnchorStyles.Right)));
94      this.tabControl.Controls.Add(this.seriesTabPage);
95      this.tabControl.Controls.Add(this.chartTabPage);
96      this.tabControl.Location = new System.Drawing.Point(0, 0);
97      this.tabControl.Name = "tabControl";
98      this.tabControl.SelectedIndex = 0;
99      this.tabControl.Size = new System.Drawing.Size(474, 317);
100      this.tabControl.TabIndex = 2;
101      //
102      // seriesTabPage
103      //
104      this.seriesTabPage.Controls.Add(this.splitContainer);
105      this.seriesTabPage.Location = new System.Drawing.Point(4, 22);
106      this.seriesTabPage.Name = "seriesTabPage";
107      this.seriesTabPage.Padding = new System.Windows.Forms.Padding(3);
108      this.seriesTabPage.Size = new System.Drawing.Size(466, 291);
109      this.seriesTabPage.TabIndex = 0;
110      this.seriesTabPage.Text = "Series";
111      this.seriesTabPage.UseVisualStyleBackColor = true;
112      //
113      // splitContainer
114      //
115      this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
116      this.splitContainer.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
117      this.splitContainer.Location = new System.Drawing.Point(3, 3);
118      this.splitContainer.Name = "splitContainer";
119      //
120      // splitContainer.Panel1
121      //
122      this.splitContainer.Panel1.Controls.Add(this.seriesListView);
123      this.splitContainer.Panel1MinSize = 20;
124      //
125      // splitContainer.Panel2
126      //
127      this.splitContainer.Panel2.Controls.Add(this.dataRowVisualPropertiesControl);
128      this.splitContainer.Panel2MinSize = 50;
129      this.splitContainer.Size = new System.Drawing.Size(460, 285);
130      this.splitContainer.SplitterDistance = 125;
131      this.splitContainer.TabIndex = 0;
132      //
133      // seriesListView
134      //
135      this.seriesListView.Dock = System.Windows.Forms.DockStyle.Fill;
136      this.seriesListView.HideSelection = false;
137      this.seriesListView.Location = new System.Drawing.Point(0, 0);
138      this.seriesListView.MultiSelect = false;
139      this.seriesListView.Name = "seriesListView";
140      this.seriesListView.ShowGroups = false;
141      this.seriesListView.Size = new System.Drawing.Size(125, 285);
142      this.seriesListView.TabIndex = 0;
143      this.seriesListView.UseCompatibleStateImageBehavior = false;
144      this.seriesListView.View = System.Windows.Forms.View.SmallIcon;
145      this.seriesListView.SelectedIndexChanged += new System.EventHandler(this.seriesListView_SelectedIndexChanged);
146      //
147      // chartTabPage
148      //
149      this.chartTabPage.Controls.Add(this.dataTableVisualPropertiesControl);
150      this.chartTabPage.Location = new System.Drawing.Point(4, 22);
151      this.chartTabPage.Name = "chartTabPage";
152      this.chartTabPage.Padding = new System.Windows.Forms.Padding(3);
153      this.chartTabPage.Size = new System.Drawing.Size(466, 291);
154      this.chartTabPage.TabIndex = 1;
155      this.chartTabPage.Text = "Chart";
156      this.chartTabPage.UseVisualStyleBackColor = true;
157      //
158      // dataRowVisualPropertiesControl
159      //
160      this.dataRowVisualPropertiesControl.Content = null;
161      this.dataRowVisualPropertiesControl.Dock = System.Windows.Forms.DockStyle.Fill;
162      this.dataRowVisualPropertiesControl.Location = new System.Drawing.Point(0, 0);
163      this.dataRowVisualPropertiesControl.Name = "dataRowVisualPropertiesControl";
164      this.dataRowVisualPropertiesControl.Size = new System.Drawing.Size(331, 285);
165      this.dataRowVisualPropertiesControl.TabIndex = 0;
166      //
167      // dataTableVisualPropertiesControl
168      //
169      this.dataTableVisualPropertiesControl.Dock = System.Windows.Forms.DockStyle.Fill;
170      this.dataTableVisualPropertiesControl.Location = new System.Drawing.Point(3, 3);
171      this.dataTableVisualPropertiesControl.Name = "dataTableVisualPropertiesControl";
172      this.dataTableVisualPropertiesControl.Size = new System.Drawing.Size(460, 285);
173      this.dataTableVisualPropertiesControl.TabIndex = 0;
174      //
175      // DataTableVisualPropertiesDialog
176      //
177      this.AcceptButton = this.okButton;
178      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
179      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
180      this.CancelButton = this.cancelButton;
181      this.ClientSize = new System.Drawing.Size(475, 359);
182      this.Controls.Add(this.tabControl);
183      this.Controls.Add(this.cancelButton);
184      this.Controls.Add(this.okButton);
185      this.Name = "DataTableVisualPropertiesDialog";
186      this.Text = "Customize Visual Properties";
187      this.tabControl.ResumeLayout(false);
188      this.seriesTabPage.ResumeLayout(false);
189      this.splitContainer.Panel1.ResumeLayout(false);
190      this.splitContainer.Panel2.ResumeLayout(false);
191      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
192      this.splitContainer.ResumeLayout(false);
193      this.chartTabPage.ResumeLayout(false);
194      this.ResumeLayout(false);
195
196    }
197
198    #endregion
199
200    private System.Windows.Forms.Button okButton;
201    private System.Windows.Forms.Button cancelButton;
202    private System.Windows.Forms.TabControl tabControl;
203    private System.Windows.Forms.TabPage seriesTabPage;
204    private System.Windows.Forms.SplitContainer splitContainer;
205    private System.Windows.Forms.ListView seriesListView;
206    private System.Windows.Forms.TabPage chartTabPage;
207    private DataRowVisualPropertiesControl dataRowVisualPropertiesControl;
208    private DataTableVisualPropertiesControl dataTableVisualPropertiesControl;
209  }
210}
Note: See TracBrowser for help on using the repository browser.