Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/23/17 16:11:02 (7 years ago)
Author:
abeham
Message:

#2457: updated branch to trunk

Location:
branches/PerformanceComparison/HeuristicLab.Analysis.Views
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/PerformanceComparison/HeuristicLab.Analysis.Views

  • branches/PerformanceComparison/HeuristicLab.Analysis.Views/3.3/ScatterPlotDataRowVisualPropertiesControl.Designer.cs

    r13722 r14600  
    11#region License Information
    22/* HeuristicLab
    3  * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     3 * Copyright (C) 2002-2016 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    44 *
    55 * This file is part of HeuristicLab.
     
    4545    /// </summary>
    4646    private void InitializeComponent() {
     47      this.components = new System.ComponentModel.Container();
    4748      this.pointStyleComboBox = new System.Windows.Forms.ComboBox();
    4849      this.colorDialog = new System.Windows.Forms.ColorDialog();
     
    5758      this.label7 = new System.Windows.Forms.Label();
    5859      this.label4 = new System.Windows.Forms.Label();
    59       this.regressionLineCheckBox = new System.Windows.Forms.CheckBox();
     60      this.regressionTypeComboBox = new System.Windows.Forms.ComboBox();
     61      this.regressionGroupBox = new System.Windows.Forms.GroupBox();
     62      this.isRegressionVisibleInLegendCheckBox = new System.Windows.Forms.CheckBox();
     63      this.polynomialRegressionOrderNumericUpDown = new System.Windows.Forms.NumericUpDown();
     64      this.orderLabel = new System.Windows.Forms.Label();
     65      this.regressionLegendTextBox = new System.Windows.Forms.TextBox();
     66      this.toolTip = new System.Windows.Forms.ToolTip(this.components);
    6067      ((System.ComponentModel.ISupportInitialize)(this.pointSizeNumericUpDown)).BeginInit();
     68      this.regressionGroupBox.SuspendLayout();
     69      ((System.ComponentModel.ISupportInitialize)(this.polynomialRegressionOrderNumericUpDown)).BeginInit();
    6170      this.SuspendLayout();
    6271      //
     
    176185      //
    177186      this.label4.AutoSize = true;
    178       this.label4.Location = new System.Drawing.Point(3, 136);
     187      this.label4.Location = new System.Drawing.Point(6, 22);
    179188      this.label4.Name = "label4";
    180       this.label4.Size = new System.Drawing.Size(86, 13);
    181       this.label4.TabIndex = 2;
    182       this.label4.Text = "&Regression Line:";
    183       //
    184       // regressionLineCheckBox
    185       //
    186       this.regressionLineCheckBox.AutoSize = true;
    187       this.regressionLineCheckBox.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
    188       this.regressionLineCheckBox.Location = new System.Drawing.Point(99, 136);
    189       this.regressionLineCheckBox.Name = "regressionLineCheckBox";
    190       this.regressionLineCheckBox.Size = new System.Drawing.Size(15, 14);
    191       this.regressionLineCheckBox.TabIndex = 3;
    192       this.regressionLineCheckBox.UseVisualStyleBackColor = true;
    193       this.regressionLineCheckBox.CheckedChanged += new System.EventHandler(this.regressionLineCheckBox_CheckedChanged);
     189      this.label4.Size = new System.Drawing.Size(34, 13);
     190      this.label4.TabIndex = 7;
     191      this.label4.Text = "Type:";
     192      //
     193      // regressionTypeComboBox
     194      //
     195      this.regressionTypeComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     196            | System.Windows.Forms.AnchorStyles.Right)));
     197      this.regressionTypeComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     198      this.regressionTypeComboBox.FormattingEnabled = true;
     199      this.regressionTypeComboBox.Location = new System.Drawing.Point(93, 19);
     200      this.regressionTypeComboBox.Name = "regressionTypeComboBox";
     201      this.regressionTypeComboBox.Size = new System.Drawing.Size(147, 21);
     202      this.regressionTypeComboBox.TabIndex = 8;
     203      this.regressionTypeComboBox.SelectedValueChanged += new System.EventHandler(this.regressionTypeComboBox_SelectedValueChanged);
     204      //
     205      // regressionGroupBox
     206      //
     207      this.regressionGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     208            | System.Windows.Forms.AnchorStyles.Right)));
     209      this.regressionGroupBox.Controls.Add(this.isRegressionVisibleInLegendCheckBox);
     210      this.regressionGroupBox.Controls.Add(this.regressionTypeComboBox);
     211      this.regressionGroupBox.Controls.Add(this.polynomialRegressionOrderNumericUpDown);
     212      this.regressionGroupBox.Controls.Add(this.orderLabel);
     213      this.regressionGroupBox.Controls.Add(this.regressionLegendTextBox);
     214      this.regressionGroupBox.Controls.Add(this.label4);
     215      this.regressionGroupBox.Location = new System.Drawing.Point(3, 136);
     216      this.regressionGroupBox.Name = "regressionGroupBox";
     217      this.regressionGroupBox.Size = new System.Drawing.Size(336, 74);
     218      this.regressionGroupBox.TabIndex = 9;
     219      this.regressionGroupBox.TabStop = false;
     220      this.regressionGroupBox.Text = "&Regression";
     221      //
     222      // isRegressionVisibleInLegendCheckBox
     223      //
     224      this.isRegressionVisibleInLegendCheckBox.AutoSize = true;
     225      this.isRegressionVisibleInLegendCheckBox.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     226      this.isRegressionVisibleInLegendCheckBox.Location = new System.Drawing.Point(6, 48);
     227      this.isRegressionVisibleInLegendCheckBox.Name = "isRegressionVisibleInLegendCheckBox";
     228      this.isRegressionVisibleInLegendCheckBox.Size = new System.Drawing.Size(68, 17);
     229      this.isRegressionVisibleInLegendCheckBox.TabIndex = 13;
     230      this.isRegressionVisibleInLegendCheckBox.Text = "Legend: ";
     231      this.isRegressionVisibleInLegendCheckBox.UseVisualStyleBackColor = true;
     232      this.isRegressionVisibleInLegendCheckBox.CheckedChanged += new System.EventHandler(this.isRegressionVisibleInLegendCheckBox_CheckedChanged);
     233      //
     234      // polynomialRegressionOrderNumericUpDown
     235      //
     236      this.polynomialRegressionOrderNumericUpDown.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     237      this.polynomialRegressionOrderNumericUpDown.Location = new System.Drawing.Point(285, 20);
     238      this.polynomialRegressionOrderNumericUpDown.Margin = new System.Windows.Forms.Padding(9, 3, 3, 3);
     239      this.polynomialRegressionOrderNumericUpDown.Maximum = new decimal(new int[] {
     240            6,
     241            0,
     242            0,
     243            0});
     244      this.polynomialRegressionOrderNumericUpDown.Minimum = new decimal(new int[] {
     245            2,
     246            0,
     247            0,
     248            0});
     249      this.polynomialRegressionOrderNumericUpDown.Name = "polynomialRegressionOrderNumericUpDown";
     250      this.polynomialRegressionOrderNumericUpDown.Size = new System.Drawing.Size(45, 20);
     251      this.polynomialRegressionOrderNumericUpDown.TabIndex = 11;
     252      this.toolTip.SetToolTip(this.polynomialRegressionOrderNumericUpDown, "Order only available for Polynomial");
     253      this.polynomialRegressionOrderNumericUpDown.Value = new decimal(new int[] {
     254            2,
     255            0,
     256            0,
     257            0});
     258      this.polynomialRegressionOrderNumericUpDown.ValueChanged += new System.EventHandler(this.polynomialRegressionOrderNumericUpDown_ValueChanged);
     259      //
     260      // orderLabel
     261      //
     262      this.orderLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     263      this.orderLabel.AutoSize = true;
     264      this.orderLabel.Location = new System.Drawing.Point(246, 22);
     265      this.orderLabel.Name = "orderLabel";
     266      this.orderLabel.Size = new System.Drawing.Size(36, 13);
     267      this.orderLabel.TabIndex = 12;
     268      this.orderLabel.Text = "Order:";
     269      //
     270      // regressionLegendTextBox
     271      //
     272      this.regressionLegendTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     273            | System.Windows.Forms.AnchorStyles.Right)));
     274      this.regressionLegendTextBox.Location = new System.Drawing.Point(93, 46);
     275      this.regressionLegendTextBox.Name = "regressionLegendTextBox";
     276      this.regressionLegendTextBox.Size = new System.Drawing.Size(237, 20);
     277      this.regressionLegendTextBox.TabIndex = 10;
     278      this.regressionLegendTextBox.Validated += new System.EventHandler(this.regressionLegendTextBox_Validated);
    194279      //
    195280      // ScatterPlotDataRowVisualPropertiesControl
    196281      //
    197282      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
     283      this.Controls.Add(this.regressionGroupBox);
    198284      this.Controls.Add(this.pointSizeNumericUpDown);
    199       this.Controls.Add(this.regressionLineCheckBox);
    200285      this.Controls.Add(this.isVisibleInLegendCheckBox);
    201286      this.Controls.Add(this.label9);
    202287      this.Controls.Add(this.label3);
    203       this.Controls.Add(this.label4);
    204288      this.Controls.Add(this.pointStyleComboBox);
    205289      this.Controls.Add(this.label7);
     
    209293      this.Controls.Add(this.colorButton);
    210294      this.Name = "ScatterPlotDataRowVisualPropertiesControl";
    211       this.Size = new System.Drawing.Size(342, 157);
     295      this.Size = new System.Drawing.Size(342, 215);
    212296      ((System.ComponentModel.ISupportInitialize)(this.pointSizeNumericUpDown)).EndInit();
     297      this.regressionGroupBox.ResumeLayout(false);
     298      this.regressionGroupBox.PerformLayout();
     299      ((System.ComponentModel.ISupportInitialize)(this.polynomialRegressionOrderNumericUpDown)).EndInit();
    213300      this.ResumeLayout(false);
    214301      this.PerformLayout();
     
    230317    private System.Windows.Forms.Label label3;
    231318    private System.Windows.Forms.Label label4;
    232     private System.Windows.Forms.CheckBox regressionLineCheckBox;
     319    private System.Windows.Forms.ComboBox regressionTypeComboBox;
     320    private System.Windows.Forms.GroupBox regressionGroupBox;
     321    private System.Windows.Forms.TextBox regressionLegendTextBox;
     322    private System.Windows.Forms.NumericUpDown polynomialRegressionOrderNumericUpDown;
     323    private System.Windows.Forms.Label orderLabel;
     324    private System.Windows.Forms.ToolTip toolTip;
     325    private System.Windows.Forms.CheckBox isRegressionVisibleInLegendCheckBox;
    233326  }
    234327}
Note: See TracChangeset for help on using the changeset viewer.