Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 10625 was 10558, checked in by pfleck, 10 years ago
  • removed unnecessary references and using
  • added missing license header
  • formatted code according to HL standards
File size: 5.4 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
22namespace HeuristicLab.DataPreprocessing.Views {
23  partial class LineChartView {
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 Component 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.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
48      this.variablesListBox = new System.Windows.Forms.CheckedListBox();
49      this.groupBoxAttributs = new System.Windows.Forms.GroupBox();
50      this.groupBoxOptions = new System.Windows.Forms.GroupBox();
51      this.groupBoxAttributs.SuspendLayout();
52      this.SuspendLayout();
53      //
54      // viewHost
55      //
56      this.viewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
57            | System.Windows.Forms.AnchorStyles.Left)
58            | System.Windows.Forms.AnchorStyles.Right)));
59      this.viewHost.Caption = "View";
60      this.viewHost.Content = null;
61      this.viewHost.Enabled = false;
62      this.viewHost.Location = new System.Drawing.Point(162, 4);
63      this.viewHost.Name = "viewHost";
64      this.viewHost.ReadOnly = false;
65      this.viewHost.Size = new System.Drawing.Size(489, 396);
66      this.viewHost.TabIndex = 0;
67      this.viewHost.ViewsLabelVisible = true;
68      this.viewHost.ViewType = null;
69      //
70      // variablesListBox
71      //
72      this.variablesListBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
73            | System.Windows.Forms.AnchorStyles.Left)
74            | System.Windows.Forms.AnchorStyles.Right)));
75      this.variablesListBox.FormattingEnabled = true;
76      this.variablesListBox.Location = new System.Drawing.Point(6, 19);
77      this.variablesListBox.Name = "variablesListBox";
78      this.variablesListBox.Size = new System.Drawing.Size(141, 229);
79      this.variablesListBox.TabIndex = 1;
80      this.variablesListBox.ItemCheck += new System.Windows.Forms.ItemCheckEventHandler(this.variablesListBox_ItemCheck);
81      //
82      // groupBoxAttributs
83      //
84      this.groupBoxAttributs.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
85            | System.Windows.Forms.AnchorStyles.Left)));
86      this.groupBoxAttributs.Controls.Add(this.variablesListBox);
87      this.groupBoxAttributs.Location = new System.Drawing.Point(3, 4);
88      this.groupBoxAttributs.Name = "groupBoxAttributs";
89      this.groupBoxAttributs.Size = new System.Drawing.Size(153, 252);
90      this.groupBoxAttributs.TabIndex = 2;
91      this.groupBoxAttributs.TabStop = false;
92      this.groupBoxAttributs.Text = "Attributes";
93      //
94      // groupBoxOptions
95      //
96      this.groupBoxOptions.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
97      this.groupBoxOptions.Location = new System.Drawing.Point(4, 262);
98      this.groupBoxOptions.Name = "groupBoxOptions";
99      this.groupBoxOptions.Size = new System.Drawing.Size(152, 138);
100      this.groupBoxOptions.TabIndex = 3;
101      this.groupBoxOptions.TabStop = false;
102      this.groupBoxOptions.Text = "Options";
103      //
104      // LineChartView
105      //
106      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
107      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
108      this.Controls.Add(this.groupBoxOptions);
109      this.Controls.Add(this.groupBoxAttributs);
110      this.Controls.Add(this.viewHost);
111      this.Name = "LineChartView";
112      this.Size = new System.Drawing.Size(654, 403);
113      this.groupBoxAttributs.ResumeLayout(false);
114      this.ResumeLayout(false);
115
116    }
117
118    #endregion
119
120    private MainForm.WindowsForms.ViewHost viewHost;
121    private System.Windows.Forms.CheckedListBox variablesListBox;
122    private System.Windows.Forms.GroupBox groupBoxAttributs;
123    private System.Windows.Forms.GroupBox groupBoxOptions;
124  }
125}
Note: See TracBrowser for help on using the repository browser.