[6010] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[12009] | 3 | * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[6010] | 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();
|
---|
[6339] | 52 | this.downButton = new System.Windows.Forms.Button();
|
---|
| 53 | this.upButton = new System.Windows.Forms.Button();
|
---|
[6010] | 54 | this.seriesListView = new System.Windows.Forms.ListView();
|
---|
[6016] | 55 | this.dataRowVisualPropertiesControl = new HeuristicLab.Analysis.Views.DataRowVisualPropertiesControl();
|
---|
[6010] | 56 | this.chartTabPage = new System.Windows.Forms.TabPage();
|
---|
[6012] | 57 | this.dataTableVisualPropertiesControl = new HeuristicLab.Analysis.Views.DataTableVisualPropertiesControl();
|
---|
[6010] | 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();
|
---|
[6012] | 64 | this.chartTabPage.SuspendLayout();
|
---|
[6010] | 65 | this.SuspendLayout();
|
---|
| 66 | //
|
---|
| 67 | // okButton
|
---|
| 68 | //
|
---|
[6339] | 69 | this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[7216] | 70 | this.okButton.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
---|
[9258] | 71 | this.okButton.Location = new System.Drawing.Point(325, 425);
|
---|
[6010] | 72 | this.okButton.Name = "okButton";
|
---|
| 73 | this.okButton.Size = new System.Drawing.Size(75, 23);
|
---|
| 74 | this.okButton.TabIndex = 0;
|
---|
[7244] | 75 | this.okButton.Text = "&OK";
|
---|
[6010] | 76 | this.okButton.UseVisualStyleBackColor = true;
|
---|
| 77 | this.okButton.Click += new System.EventHandler(this.okButton_Click);
|
---|
| 78 | //
|
---|
| 79 | // cancelButton
|
---|
| 80 | //
|
---|
[6339] | 81 | this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[6010] | 82 | this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
---|
[9258] | 83 | this.cancelButton.Location = new System.Drawing.Point(406, 425);
|
---|
[6010] | 84 | this.cancelButton.Name = "cancelButton";
|
---|
| 85 | this.cancelButton.Size = new System.Drawing.Size(75, 23);
|
---|
| 86 | this.cancelButton.TabIndex = 1;
|
---|
[7244] | 87 | this.cancelButton.Text = "&Cancel";
|
---|
[6010] | 88 | this.cancelButton.UseVisualStyleBackColor = true;
|
---|
| 89 | this.cancelButton.Click += new System.EventHandler(this.cancelButton_Click);
|
---|
| 90 | //
|
---|
| 91 | // tabControl
|
---|
| 92 | //
|
---|
[9258] | 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)));
|
---|
[6010] | 96 | this.tabControl.Controls.Add(this.seriesTabPage);
|
---|
| 97 | this.tabControl.Controls.Add(this.chartTabPage);
|
---|
[7244] | 98 | this.tabControl.Location = new System.Drawing.Point(12, 12);
|
---|
[6010] | 99 | this.tabControl.Name = "tabControl";
|
---|
| 100 | this.tabControl.SelectedIndex = 0;
|
---|
[9258] | 101 | this.tabControl.Size = new System.Drawing.Size(469, 407);
|
---|
[6010] | 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);
|
---|
[9258] | 110 | this.seriesTabPage.Size = new System.Drawing.Size(461, 381);
|
---|
[6010] | 111 | this.seriesTabPage.TabIndex = 0;
|
---|
| 112 | this.seriesTabPage.Text = "Series";
|
---|
| 113 | this.seriesTabPage.UseVisualStyleBackColor = true;
|
---|
| 114 | //
|
---|
| 115 | // splitContainer
|
---|
| 116 | //
|
---|
[9258] | 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)));
|
---|
[6010] | 120 | this.splitContainer.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
|
---|
[7244] | 121 | this.splitContainer.Location = new System.Drawing.Point(0, 0);
|
---|
[6010] | 122 | this.splitContainer.Name = "splitContainer";
|
---|
| 123 | //
|
---|
| 124 | // splitContainer.Panel1
|
---|
| 125 | //
|
---|
[6016] | 126 | this.splitContainer.Panel1.Controls.Add(this.downButton);
|
---|
| 127 | this.splitContainer.Panel1.Controls.Add(this.upButton);
|
---|
[6010] | 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;
|
---|
[9258] | 135 | this.splitContainer.Size = new System.Drawing.Size(461, 381);
|
---|
[6010] | 136 | this.splitContainer.SplitterDistance = 125;
|
---|
| 137 | this.splitContainer.TabIndex = 0;
|
---|
| 138 | //
|
---|
[6339] | 139 | // downButton
|
---|
| 140 | //
|
---|
[8015] | 141 | this.downButton.Enabled = false;
|
---|
[7244] | 142 | this.downButton.Location = new System.Drawing.Point(35, 3);
|
---|
[6339] | 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 | //
|
---|
[8015] | 152 | this.upButton.Enabled = false;
|
---|
[7244] | 153 | this.upButton.Location = new System.Drawing.Point(3, 3);
|
---|
[6339] | 154 | this.upButton.Name = "upButton";
|
---|
| 155 | this.upButton.Size = new System.Drawing.Size(26, 23);
|
---|
[7244] | 156 | this.upButton.TabIndex = 0;
|
---|
[6339] | 157 | this.upButton.Text = "Up";
|
---|
| 158 | this.upButton.UseVisualStyleBackColor = true;
|
---|
| 159 | this.upButton.Click += new System.EventHandler(this.upButton_Click);
|
---|
| 160 | //
|
---|
[6010] | 161 | // seriesListView
|
---|
| 162 | //
|
---|
[9258] | 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)));
|
---|
[6010] | 166 | this.seriesListView.HideSelection = false;
|
---|
[7244] | 167 | this.seriesListView.Location = new System.Drawing.Point(3, 32);
|
---|
[6010] | 168 | this.seriesListView.MultiSelect = false;
|
---|
| 169 | this.seriesListView.Name = "seriesListView";
|
---|
| 170 | this.seriesListView.ShowGroups = false;
|
---|
[9258] | 171 | this.seriesListView.Size = new System.Drawing.Size(119, 346);
|
---|
[7244] | 172 | this.seriesListView.TabIndex = 2;
|
---|
[6010] | 173 | this.seriesListView.UseCompatibleStateImageBehavior = false;
|
---|
[7244] | 174 | this.seriesListView.View = System.Windows.Forms.View.List;
|
---|
[6010] | 175 | this.seriesListView.SelectedIndexChanged += new System.EventHandler(this.seriesListView_SelectedIndexChanged);
|
---|
| 176 | //
|
---|
[6016] | 177 | // dataRowVisualPropertiesControl
|
---|
| 178 | //
|
---|
[9258] | 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)));
|
---|
[6016] | 182 | this.dataRowVisualPropertiesControl.Content = null;
|
---|
[7244] | 183 | this.dataRowVisualPropertiesControl.Location = new System.Drawing.Point(3, 26);
|
---|
[6016] | 184 | this.dataRowVisualPropertiesControl.Name = "dataRowVisualPropertiesControl";
|
---|
[9258] | 185 | this.dataRowVisualPropertiesControl.Size = new System.Drawing.Size(326, 352);
|
---|
[6016] | 186 | this.dataRowVisualPropertiesControl.TabIndex = 0;
|
---|
| 187 | //
|
---|
[6010] | 188 | // chartTabPage
|
---|
| 189 | //
|
---|
[6012] | 190 | this.chartTabPage.Controls.Add(this.dataTableVisualPropertiesControl);
|
---|
[6010] | 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);
|
---|
[9258] | 194 | this.chartTabPage.Size = new System.Drawing.Size(461, 381);
|
---|
[6010] | 195 | this.chartTabPage.TabIndex = 1;
|
---|
| 196 | this.chartTabPage.Text = "Chart";
|
---|
| 197 | this.chartTabPage.UseVisualStyleBackColor = true;
|
---|
| 198 | //
|
---|
[6012] | 199 | // dataTableVisualPropertiesControl
|
---|
| 200 | //
|
---|
[9258] | 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)));
|
---|
[6014] | 204 | this.dataTableVisualPropertiesControl.Content = null;
|
---|
[7244] | 205 | this.dataTableVisualPropertiesControl.Location = new System.Drawing.Point(3, 6);
|
---|
[6012] | 206 | this.dataTableVisualPropertiesControl.Name = "dataTableVisualPropertiesControl";
|
---|
[9258] | 207 | this.dataTableVisualPropertiesControl.Size = new System.Drawing.Size(455, 372);
|
---|
[6012] | 208 | this.dataTableVisualPropertiesControl.TabIndex = 0;
|
---|
| 209 | //
|
---|
[6010] | 210 | // DataTableVisualPropertiesDialog
|
---|
| 211 | //
|
---|
| 212 | this.AcceptButton = this.okButton;
|
---|
[7967] | 213 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
|
---|
[6010] | 214 | this.CancelButton = this.cancelButton;
|
---|
[9258] | 215 | this.ClientSize = new System.Drawing.Size(493, 460);
|
---|
[6010] | 216 | this.Controls.Add(this.tabControl);
|
---|
| 217 | this.Controls.Add(this.cancelButton);
|
---|
| 218 | this.Controls.Add(this.okButton);
|
---|
[7221] | 219 | this.MaximizeBox = false;
|
---|
| 220 | this.MinimizeBox = false;
|
---|
[6010] | 221 | this.Name = "DataTableVisualPropertiesDialog";
|
---|
[6339] | 222 | this.ShowIcon = false;
|
---|
[7221] | 223 | this.ShowInTaskbar = false;
|
---|
[7244] | 224 | this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
---|
[6012] | 225 | this.Text = "Customize Visual Properties";
|
---|
[7244] | 226 | this.TopMost = true;
|
---|
[6010] | 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);
|
---|
[6012] | 233 | this.chartTabPage.ResumeLayout(false);
|
---|
[6010] | 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;
|
---|
[6012] | 248 | private DataTableVisualPropertiesControl dataTableVisualPropertiesControl;
|
---|
[6016] | 249 | private System.Windows.Forms.Button downButton;
|
---|
| 250 | private System.Windows.Forms.Button upButton;
|
---|
[6010] | 251 | }
|
---|
| 252 | } |
---|