Free cookie consent management tool by TermsFeed Policy Generator

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

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

Added line chart and basic logic for line chart

File size: 3.0 KB
Line 
1namespace HeuristicLab.DataPreprocessing.Views {
2  partial class LineChartView {
3    /// <summary>
4    /// Required designer variable.
5    /// </summary>
6    private System.ComponentModel.IContainer components = null;
7
8    /// <summary>
9    /// Clean up any resources being used.
10    /// </summary>
11    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
12    protected override void Dispose(bool disposing) {
13      if (disposing && (components != null)) {
14        components.Dispose();
15      }
16      base.Dispose(disposing);
17    }
18
19    #region Component Designer generated code
20
21    /// <summary>
22    /// Required method for Designer support - do not modify
23    /// the contents of this method with the code editor.
24    /// </summary>
25    private void InitializeComponent() {
26      this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
27      this.variablesListBox = new System.Windows.Forms.CheckedListBox();
28      this.SuspendLayout();
29      //
30      // viewHost
31      //
32      this.viewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
33            | System.Windows.Forms.AnchorStyles.Left)
34            | System.Windows.Forms.AnchorStyles.Right)));
35      this.viewHost.Caption = "View";
36      this.viewHost.Content = null;
37      this.viewHost.Enabled = false;
38      this.viewHost.Location = new System.Drawing.Point(155, 3);
39      this.viewHost.Name = "viewHost";
40      this.viewHost.ReadOnly = false;
41      this.viewHost.Size = new System.Drawing.Size(922, 576);
42      this.viewHost.TabIndex = 0;
43      this.viewHost.ViewsLabelVisible = true;
44      this.viewHost.ViewType = null;
45      //
46      // variablesListBox
47      //
48      this.variablesListBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
49            | System.Windows.Forms.AnchorStyles.Left)));
50      this.variablesListBox.FormattingEnabled = true;
51      this.variablesListBox.Location = new System.Drawing.Point(4, 4);
52      this.variablesListBox.Name = "variablesListBox";
53      this.variablesListBox.Size = new System.Drawing.Size(145, 574);
54      this.variablesListBox.TabIndex = 1;
55      this.variablesListBox.ItemCheck += new System.Windows.Forms.ItemCheckEventHandler(this.variablesListBox_ItemCheck);
56      //
57      // LineChartView
58      //
59      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
60      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
61      this.Controls.Add(this.variablesListBox);
62      this.Controls.Add(this.viewHost);
63      this.Name = "LineChartView";
64      this.Size = new System.Drawing.Size(1080, 582);
65      this.ResumeLayout(false);
66
67    }
68
69    #endregion
70
71    private MainForm.WindowsForms.ViewHost viewHost;
72    private System.Windows.Forms.CheckedListBox variablesListBox;
73  }
74}
Note: See TracBrowser for help on using the repository browser.