Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/LineChartView.Designer.cs @ 10638

Last change on this file since 10638 was 10628, checked in by aesterer, 11 years ago

Refactored LineChartLogic and added CheckedItemListView to LineChartView

File size: 4.5 KB
Line 
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
22using HeuristicLab.Data;
23namespace HeuristicLab.DataPreprocessing.Views {
24  partial class LineChartView {
25    /// <summary>
26    /// Required designer variable.
27    /// </summary>
28    private System.ComponentModel.IContainer components = null;
29
30    /// <summary>
31    /// Clean up any resources being used.
32    /// </summary>
33    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
34    protected override void Dispose(bool disposing) {
35      if (disposing && (components != null)) {
36        components.Dispose();
37      }
38      base.Dispose(disposing);
39    }
40
41    #region Component Designer generated code
42
43    /// <summary>
44    /// Required method for Designer support - do not modify
45    /// the contents of this method with the code editor.
46    /// </summary>
47    private void InitializeComponent() {
48      this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
49      this.groupBoxOptions = new System.Windows.Forms.GroupBox();
50      this.checkedItemList = new HeuristicLab.DataPreprocessing.Views.PreprocessingCheckedItemListView();
51      this.SuspendLayout();
52      //
53      // viewHost
54      //
55      this.viewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
56            | System.Windows.Forms.AnchorStyles.Left)
57            | System.Windows.Forms.AnchorStyles.Right)));
58      this.viewHost.Caption = "View";
59      this.viewHost.Content = null;
60      this.viewHost.Enabled = false;
61      this.viewHost.Location = new System.Drawing.Point(162, 4);
62      this.viewHost.Name = "viewHost";
63      this.viewHost.ReadOnly = false;
64      this.viewHost.Size = new System.Drawing.Size(489, 396);
65      this.viewHost.TabIndex = 0;
66      this.viewHost.ViewsLabelVisible = true;
67      this.viewHost.ViewType = null;
68      //
69      // groupBoxOptions
70      //
71      this.groupBoxOptions.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
72      this.groupBoxOptions.Location = new System.Drawing.Point(4, 262);
73      this.groupBoxOptions.Name = "groupBoxOptions";
74      this.groupBoxOptions.Size = new System.Drawing.Size(152, 138);
75      this.groupBoxOptions.TabIndex = 3;
76      this.groupBoxOptions.TabStop = false;
77      this.groupBoxOptions.Text = "Options";
78      //
79      // checkedItemList
80      //
81      this.checkedItemList.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
82            | System.Windows.Forms.AnchorStyles.Left)));
83      this.checkedItemList.Caption = "View";
84      this.checkedItemList.Content = null;
85      this.checkedItemList.Location = new System.Drawing.Point(4, 4);
86      this.checkedItemList.Name = "checkedItemList";
87      this.checkedItemList.ReadOnly = false;
88      this.checkedItemList.Size = new System.Drawing.Size(152, 252);
89      this.checkedItemList.TabIndex = 4;
90      //
91      // LineChartView
92      //
93      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
94      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
95      this.Controls.Add(this.checkedItemList);
96      this.Controls.Add(this.groupBoxOptions);
97      this.Controls.Add(this.viewHost);
98      this.Name = "LineChartView";
99      this.Size = new System.Drawing.Size(654, 403);
100      this.ResumeLayout(false);
101
102    }
103
104    #endregion
105
106    private MainForm.WindowsForms.ViewHost viewHost;
107    private System.Windows.Forms.GroupBox groupBoxOptions;
108    private PreprocessingCheckedItemListView checkedItemList;
109  }
110}
Note: See TracBrowser for help on using the repository browser.