Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/PreprocessingChartView.Designer.cs @ 10658

Last change on this file since 10658 was 10658, checked in by aesterer, 10 years ago

Created base view PreprocessingChartView for LineChartView and HistogramView. Replaced HistogramLogic and LineChartlogic with ChartLogic. Added base content ChartContent for LineChartContent and HistogramContent.

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 PreprocessingChartView {
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.checkedItemList = new HeuristicLab.DataPreprocessing.Views.PreprocessingCheckedItemListView();
49      this.chartPanel = new System.Windows.Forms.Panel();
50      this.dataTableView = new HeuristicLab.Analysis.Views.DataTableView();
51      this.chartPanel.SuspendLayout();
52      this.SuspendLayout();
53      //
54      // checkedItemList
55      //
56      this.checkedItemList.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
57            | System.Windows.Forms.AnchorStyles.Left)));
58      this.checkedItemList.Caption = "View";
59      this.checkedItemList.Content = null;
60      this.checkedItemList.Location = new System.Drawing.Point(4, 4);
61      this.checkedItemList.Name = "checkedItemList";
62      this.checkedItemList.ReadOnly = false;
63      this.checkedItemList.Size = new System.Drawing.Size(152, 252);
64      this.checkedItemList.TabIndex = 4;
65      //
66      // chartPanel
67      //
68      this.chartPanel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
69            | System.Windows.Forms.AnchorStyles.Left)
70            | System.Windows.Forms.AnchorStyles.Right)));
71      this.chartPanel.Controls.Add(this.dataTableView);
72      this.chartPanel.Location = new System.Drawing.Point(163, 4);
73      this.chartPanel.Name = "chartPanel";
74      this.chartPanel.Size = new System.Drawing.Size(488, 396);
75      this.chartPanel.TabIndex = 5;
76      //
77      // dataTableView
78      //
79      this.dataTableView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
80            | System.Windows.Forms.AnchorStyles.Left)
81            | System.Windows.Forms.AnchorStyles.Right)));
82      this.dataTableView.Caption = "DataTable View";
83      this.dataTableView.Content = null;
84      this.dataTableView.Location = new System.Drawing.Point(3, 3);
85      this.dataTableView.Name = "dataTableView";
86      this.dataTableView.ReadOnly = false;
87      this.dataTableView.Size = new System.Drawing.Size(482, 390);
88      this.dataTableView.TabIndex = 0;
89      //
90      // LineChartView
91      //
92      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
93      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
94      this.Controls.Add(this.chartPanel);
95      this.Controls.Add(this.checkedItemList);
96      this.Name = "LineChartView";
97      this.Size = new System.Drawing.Size(654, 403);
98      this.chartPanel.ResumeLayout(false);
99      this.ResumeLayout(false);
100
101    }
102
103    #endregion
104
105    private PreprocessingCheckedItemListView checkedItemList;
106    private System.Windows.Forms.Panel chartPanel;
107    private Analysis.Views.DataTableView dataTableView;
108  }
109}
Note: See TracBrowser for help on using the repository browser.