Free cookie consent management tool by TermsFeed Policy Generator

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

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

#1465

  • worked on histogram integration
    • Added control to display DataRowVisualProperties
    • Added a dialog to select the DataRowVisualProperties of different series
    • Added a Properties menu item to the context menu and an option to show or hide this item (default is hide)
File size: 8.9 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.tabControl.SuspendLayout();
56      this.seriesTabPage.SuspendLayout();
57      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
58      this.splitContainer.Panel1.SuspendLayout();
59      this.splitContainer.Panel2.SuspendLayout();
60      this.splitContainer.SuspendLayout();
61      this.SuspendLayout();
62      //
63      // okButton
64      //
65      this.okButton.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
66      this.okButton.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
67      this.okButton.Location = new System.Drawing.Point(230, 259);
68      this.okButton.Name = "okButton";
69      this.okButton.Size = new System.Drawing.Size(75, 23);
70      this.okButton.TabIndex = 0;
71      this.okButton.Text = "Ok";
72      this.okButton.UseVisualStyleBackColor = true;
73      this.okButton.Click += new System.EventHandler(this.okButton_Click);
74      //
75      // cancelButton
76      //
77      this.cancelButton.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
78      this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
79      this.cancelButton.Location = new System.Drawing.Point(311, 259);
80      this.cancelButton.Name = "cancelButton";
81      this.cancelButton.Size = new System.Drawing.Size(75, 23);
82      this.cancelButton.TabIndex = 1;
83      this.cancelButton.Text = "Cancel";
84      this.cancelButton.UseVisualStyleBackColor = true;
85      this.cancelButton.Click += new System.EventHandler(this.cancelButton_Click);
86      //
87      // tabControl
88      //
89      this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
90                  | System.Windows.Forms.AnchorStyles.Left)
91                  | System.Windows.Forms.AnchorStyles.Right)));
92      this.tabControl.Controls.Add(this.seriesTabPage);
93      this.tabControl.Controls.Add(this.chartTabPage);
94      this.tabControl.Location = new System.Drawing.Point(0, 0);
95      this.tabControl.Name = "tabControl";
96      this.tabControl.SelectedIndex = 0;
97      this.tabControl.Size = new System.Drawing.Size(630, 252);
98      this.tabControl.TabIndex = 2;
99      //
100      // seriesTabPage
101      //
102      this.seriesTabPage.Controls.Add(this.splitContainer);
103      this.seriesTabPage.Location = new System.Drawing.Point(4, 22);
104      this.seriesTabPage.Name = "seriesTabPage";
105      this.seriesTabPage.Padding = new System.Windows.Forms.Padding(3);
106      this.seriesTabPage.Size = new System.Drawing.Size(622, 226);
107      this.seriesTabPage.TabIndex = 0;
108      this.seriesTabPage.Text = "Series";
109      this.seriesTabPage.UseVisualStyleBackColor = true;
110      //
111      // splitContainer
112      //
113      this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
114      this.splitContainer.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
115      this.splitContainer.Location = new System.Drawing.Point(3, 3);
116      this.splitContainer.Name = "splitContainer";
117      //
118      // splitContainer.Panel1
119      //
120      this.splitContainer.Panel1.Controls.Add(this.seriesListView);
121      this.splitContainer.Panel1MinSize = 20;
122      //
123      // splitContainer.Panel2
124      //
125      this.splitContainer.Panel2.Controls.Add(this.dataRowVisualPropertiesControl);
126      this.splitContainer.Panel2MinSize = 50;
127      this.splitContainer.Size = new System.Drawing.Size(616, 220);
128      this.splitContainer.SplitterDistance = 125;
129      this.splitContainer.TabIndex = 0;
130      //
131      // seriesListView
132      //
133      this.seriesListView.Dock = System.Windows.Forms.DockStyle.Fill;
134      this.seriesListView.HideSelection = false;
135      this.seriesListView.Location = new System.Drawing.Point(0, 0);
136      this.seriesListView.MultiSelect = false;
137      this.seriesListView.Name = "seriesListView";
138      this.seriesListView.ShowGroups = false;
139      this.seriesListView.Size = new System.Drawing.Size(125, 220);
140      this.seriesListView.TabIndex = 0;
141      this.seriesListView.UseCompatibleStateImageBehavior = false;
142      this.seriesListView.View = System.Windows.Forms.View.SmallIcon;
143      this.seriesListView.SelectedIndexChanged += new System.EventHandler(this.seriesListView_SelectedIndexChanged);
144      //
145      // chartTabPage
146      //
147      this.chartTabPage.Location = new System.Drawing.Point(4, 22);
148      this.chartTabPage.Name = "chartTabPage";
149      this.chartTabPage.Padding = new System.Windows.Forms.Padding(3);
150      this.chartTabPage.Size = new System.Drawing.Size(622, 226);
151      this.chartTabPage.TabIndex = 1;
152      this.chartTabPage.Text = "Chart";
153      this.chartTabPage.UseVisualStyleBackColor = true;
154      //
155      // dataRowVisualPropertiesControl
156      //
157      this.dataRowVisualPropertiesControl.Content = null;
158      this.dataRowVisualPropertiesControl.Dock = System.Windows.Forms.DockStyle.Fill;
159      this.dataRowVisualPropertiesControl.Location = new System.Drawing.Point(0, 0);
160      this.dataRowVisualPropertiesControl.Name = "dataRowVisualPropertiesControl";
161      this.dataRowVisualPropertiesControl.Size = new System.Drawing.Size(487, 220);
162      this.dataRowVisualPropertiesControl.TabIndex = 0;
163      //
164      // DataTableVisualPropertiesDialog
165      //
166      this.AcceptButton = this.okButton;
167      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
168      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
169      this.CancelButton = this.cancelButton;
170      this.ClientSize = new System.Drawing.Size(631, 294);
171      this.Controls.Add(this.tabControl);
172      this.Controls.Add(this.cancelButton);
173      this.Controls.Add(this.okButton);
174      this.Name = "DataTableVisualPropertiesDialog";
175      this.Text = "DataTableVisualPropertiesDialog";
176      this.tabControl.ResumeLayout(false);
177      this.seriesTabPage.ResumeLayout(false);
178      this.splitContainer.Panel1.ResumeLayout(false);
179      this.splitContainer.Panel2.ResumeLayout(false);
180      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
181      this.splitContainer.ResumeLayout(false);
182      this.ResumeLayout(false);
183
184    }
185
186    #endregion
187
188    private System.Windows.Forms.Button okButton;
189    private System.Windows.Forms.Button cancelButton;
190    private System.Windows.Forms.TabControl tabControl;
191    private System.Windows.Forms.TabPage seriesTabPage;
192    private System.Windows.Forms.SplitContainer splitContainer;
193    private System.Windows.Forms.ListView seriesListView;
194    private System.Windows.Forms.TabPage chartTabPage;
195    private DataRowVisualPropertiesControl dataRowVisualPropertiesControl;
196  }
197}
Note: See TracBrowser for help on using the repository browser.