Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/02/14 16:01:01 (10 years ago)
Author:
aesterer
Message:

Added chart per variable feature to preprocessing chart view

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/PreprocessingChartView.Designer.cs

    r10658 r10717  
    4646    /// </summary>
    4747    private void InitializeComponent() {
     48      this.dataTableView = new HeuristicLab.Analysis.Views.DataTableView();
     49      this.tableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
    4850      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();
     51      this.tableLayoutPanel.SuspendLayout();
    5252      this.SuspendLayout();
     53      //
     54      // dataTableView
     55      //
     56      this.dataTableView.Caption = "DataTable View";
     57      this.dataTableView.Content = null;
     58      this.dataTableView.Dock = System.Windows.Forms.DockStyle.Fill;
     59      this.dataTableView.Location = new System.Drawing.Point(3, 3);
     60      this.dataTableView.Name = "dataTableView";
     61      this.dataTableView.ReadOnly = false;
     62      this.dataTableView.Size = new System.Drawing.Size(486, 390);
     63      this.dataTableView.TabIndex = 0;
     64      //
     65      // tableLayoutPanel
     66      //
     67      this.tableLayoutPanel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     68            | System.Windows.Forms.AnchorStyles.Left)
     69            | System.Windows.Forms.AnchorStyles.Right)));
     70      this.tableLayoutPanel.AutoScroll = true;
     71      this.tableLayoutPanel.ColumnCount = 1;
     72      this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     73      this.tableLayoutPanel.Controls.Add(this.dataTableView, 0, 0);
     74      this.tableLayoutPanel.Location = new System.Drawing.Point(162, 4);
     75      this.tableLayoutPanel.Name = "tableLayoutPanel";
     76      this.tableLayoutPanel.RowCount = 1;
     77      this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
     78      this.tableLayoutPanel.Size = new System.Drawing.Size(492, 396);
     79      this.tableLayoutPanel.TabIndex = 6;
     80      this.tableLayoutPanel.Layout += new System.Windows.Forms.LayoutEventHandler(this.tableLayoutPanel_Layout);
    5381      //
    5482      // checkedItemList
     
    6492      this.checkedItemList.TabIndex = 4;
    6593      //
    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
     94      // PreprocessingChartView
    9195      //
    9296      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
    9397      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
    94       this.Controls.Add(this.chartPanel);
     98      this.Controls.Add(this.tableLayoutPanel);
    9599      this.Controls.Add(this.checkedItemList);
    96       this.Name = "LineChartView";
     100      this.Name = "PreprocessingChartView";
    97101      this.Size = new System.Drawing.Size(654, 403);
    98       this.chartPanel.ResumeLayout(false);
     102      this.tableLayoutPanel.ResumeLayout(false);
    99103      this.ResumeLayout(false);
    100104
     
    104108
    105109    private PreprocessingCheckedItemListView checkedItemList;
    106     private System.Windows.Forms.Panel chartPanel;
    107110    private Analysis.Views.DataTableView dataTableView;
     111    private System.Windows.Forms.TableLayoutPanel tableLayoutPanel;
    108112  }
    109113}
Note: See TracChangeset for help on using the changeset viewer.