Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/28/14 15:31:47 (10 years ago)
Author:
aesterer
Message:

Splitted scatter plot view in single and multi view

File:
1 edited

Legend:

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

    r10882 r10915  
    2424    /// </summary>
    2525    private void InitializeComponent() {
    26       this.scatterPlotView = new HeuristicLab.DataPreprocessing.Views.PreprocessingScatterPlotView();
    27       this.groupBox1 = new System.Windows.Forms.GroupBox();
    28       this.label2 = new System.Windows.Forms.Label();
    29       this.label1 = new System.Windows.Forms.Label();
    30       this.comboBoxYVariable = new System.Windows.Forms.ComboBox();
    31       this.comboBoxXVariable = new System.Windows.Forms.ComboBox();
    32       this.groupBox1.SuspendLayout();
     26      this.tableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
    3327      this.SuspendLayout();
    3428      //
    35       // scatterPlotView
     29      // tableLayoutPanel
    3630      //
    37       this.scatterPlotView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     31      this.tableLayoutPanel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
    3832            | System.Windows.Forms.AnchorStyles.Left)
    3933            | System.Windows.Forms.AnchorStyles.Right)));
    40       this.scatterPlotView.Caption = "ScatterPlot View";
    41       this.scatterPlotView.Content = null;
    42       this.scatterPlotView.Location = new System.Drawing.Point(188, 0);
    43       this.scatterPlotView.Name = "scatterPlotView";
    44       this.scatterPlotView.ReadOnly = false;
    45       this.scatterPlotView.Size = new System.Drawing.Size(670, 512);
    46       this.scatterPlotView.TabIndex = 0;
     34      this.tableLayoutPanel.AutoScroll = true;
     35      this.tableLayoutPanel.ColumnCount = 1;
     36      this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     37      this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     38      this.tableLayoutPanel.Location = new System.Drawing.Point(3, 3);
     39      this.tableLayoutPanel.Name = "tableLayoutPanel";
     40      this.tableLayoutPanel.RowCount = 1;
     41      this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
     42      this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 514F));
     43      this.tableLayoutPanel.Size = new System.Drawing.Size(860, 514);
     44      this.tableLayoutPanel.TabIndex = 1;
    4745      //
    48       // groupBox1
    49       //
    50       this.groupBox1.Controls.Add(this.label2);
    51       this.groupBox1.Controls.Add(this.label1);
    52       this.groupBox1.Controls.Add(this.comboBoxYVariable);
    53       this.groupBox1.Controls.Add(this.comboBoxXVariable);
    54       this.groupBox1.Location = new System.Drawing.Point(3, 3);
    55       this.groupBox1.Name = "groupBox1";
    56       this.groupBox1.Size = new System.Drawing.Size(179, 157);
    57       this.groupBox1.TabIndex = 1;
    58       this.groupBox1.TabStop = false;
    59       this.groupBox1.Text = "Options";
    60       //
    61       // label2
    62       //
    63       this.label2.AutoSize = true;
    64       this.label2.Location = new System.Drawing.Point(17, 80);
    65       this.label2.Name = "label2";
    66       this.label2.Size = new System.Drawing.Size(55, 13);
    67       this.label2.TabIndex = 3;
    68       this.label2.Text = "Y Variable";
    69       //
    70       // label1
    71       //
    72       this.label1.AutoSize = true;
    73       this.label1.Location = new System.Drawing.Point(17, 25);
    74       this.label1.Name = "label1";
    75       this.label1.Size = new System.Drawing.Size(55, 13);
    76       this.label1.TabIndex = 2;
    77       this.label1.Text = "X Variable";
    78       //
    79       // comboBoxYVariable
    80       //
    81       this.comboBoxYVariable.FormattingEnabled = true;
    82       this.comboBoxYVariable.Location = new System.Drawing.Point(20, 96);
    83       this.comboBoxYVariable.Name = "comboBoxYVariable";
    84       this.comboBoxYVariable.Size = new System.Drawing.Size(121, 21);
    85       this.comboBoxYVariable.TabIndex = 1;
    86       this.comboBoxYVariable.SelectedIndexChanged += new System.EventHandler(this.comboBox_SelectedIndexChanged);
    87       //
    88       // comboBoxXVariable
    89       //
    90       this.comboBoxXVariable.FormattingEnabled = true;
    91       this.comboBoxXVariable.Location = new System.Drawing.Point(20, 41);
    92       this.comboBoxXVariable.Name = "comboBoxXVariable";
    93       this.comboBoxXVariable.Size = new System.Drawing.Size(121, 21);
    94       this.comboBoxXVariable.TabIndex = 0;
    95       this.comboBoxXVariable.SelectedIndexChanged += new System.EventHandler(this.comboBox_SelectedIndexChanged);
    96       //
    97       // PreprocessingScatterPlotView
     46      // MultiScatterPlotView
    9847      //
    9948      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
    10049      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
    101       this.Controls.Add(this.groupBox1);
    102       this.Controls.Add(this.scatterPlotView);
    103       this.Name = "PreprocessingScatterPlotView";
     50      this.Controls.Add(this.tableLayoutPanel);
     51      this.Name = "MultiScatterPlotView";
    10452      this.Size = new System.Drawing.Size(863, 517);
    105       this.groupBox1.ResumeLayout(false);
    106       this.groupBox1.PerformLayout();
    10753      this.ResumeLayout(false);
    10854
     
    11157    #endregion
    11258
    113     private HeuristicLab.DataPreprocessing.Views.PreprocessingScatterPlotView scatterPlotView;
    114     private System.Windows.Forms.GroupBox groupBox1;
    115     private System.Windows.Forms.Label label2;
    116     private System.Windows.Forms.Label label1;
    117     private System.Windows.Forms.ComboBox comboBoxYVariable;
    118     private System.Windows.Forms.ComboBox comboBoxXVariable;
     59    private System.Windows.Forms.TableLayoutPanel tableLayoutPanel;
     60
    11961  }
    12062}
Note: See TracChangeset for help on using the changeset viewer.