Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/04/16 23:43:46 (8 years ago)
Author:
bburlacu
Message:

#2597: Improved drag & drop support for all charts. Added configuration option to adjust the number of columns in the view. Fixed bug where attempting to set row & column style would result in an exception. Fixed boundaries of the vertical annotation line in the GradientChart.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.RegressionSolutionGradientView/HeuristicLab.Problems.DataAnalysis.Views/3.4/Regression/RegressionSolutionTargetResponseGradientView.Designer.cs

    r13853 r13995  
    2424    /// </summary>
    2525    private void InitializeComponent() {
     26      this.components = new System.ComponentModel.Container();
    2627      this.variableListView = new System.Windows.Forms.ListView();
    2728      this.gradientChartTableLayout = new System.Windows.Forms.TableLayoutPanel();
     
    3334      this.configSplitContainer = new System.Windows.Forms.SplitContainer();
    3435      this.variableGroupBox = new System.Windows.Forms.GroupBox();
     36      this.layoutGroupBox = new System.Windows.Forms.GroupBox();
     37      this.columnsTextBox = new System.Windows.Forms.TextBox();
     38      this.columnsLabel = new System.Windows.Forms.Label();
    3539      this.scrollPanel = new System.Windows.Forms.Panel();
     40      this.errorProvider = new System.Windows.Forms.ErrorProvider(this.components);
    3641      this.yAxisConfigGroupBox.SuspendLayout();
    3742      this.densityGroupBox.SuspendLayout();
     
    4146      this.configSplitContainer.SuspendLayout();
    4247      this.variableGroupBox.SuspendLayout();
     48      this.layoutGroupBox.SuspendLayout();
    4349      this.scrollPanel.SuspendLayout();
     50      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
    4451      this.SuspendLayout();
    4552      //
     
    5057      this.variableListView.Location = new System.Drawing.Point(3, 16);
    5158      this.variableListView.Name = "variableListView";
    52       this.variableListView.Size = new System.Drawing.Size(163, 503);
     59      this.variableListView.Size = new System.Drawing.Size(163, 458);
    5360      this.variableListView.TabIndex = 0;
    5461      this.variableListView.UseCompatibleStateImageBehavior = false;
     
    142149      //
    143150      this.configSplitContainer.Panel1.Controls.Add(this.variableGroupBox);
     151      this.configSplitContainer.Panel1.Controls.Add(this.layoutGroupBox);
    144152      this.configSplitContainer.Panel1.Controls.Add(this.densityGroupBox);
    145153      this.configSplitContainer.Panel1.Controls.Add(this.yAxisConfigGroupBox);
     
    156164      this.variableGroupBox.Controls.Add(this.variableListView);
    157165      this.variableGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
    158       this.variableGroupBox.Location = new System.Drawing.Point(0, 126);
     166      this.variableGroupBox.Location = new System.Drawing.Point(0, 171);
    159167      this.variableGroupBox.Name = "variableGroupBox";
    160       this.variableGroupBox.Size = new System.Drawing.Size(169, 522);
     168      this.variableGroupBox.Size = new System.Drawing.Size(169, 477);
    161169      this.variableGroupBox.TabIndex = 1;
    162170      this.variableGroupBox.TabStop = false;
    163171      this.variableGroupBox.Text = "Variables";
     172      //
     173      // layoutGroupBox
     174      //
     175      this.layoutGroupBox.Controls.Add(this.columnsTextBox);
     176      this.layoutGroupBox.Controls.Add(this.columnsLabel);
     177      this.layoutGroupBox.Dock = System.Windows.Forms.DockStyle.Top;
     178      this.layoutGroupBox.Location = new System.Drawing.Point(0, 126);
     179      this.layoutGroupBox.Name = "layoutGroupBox";
     180      this.layoutGroupBox.Size = new System.Drawing.Size(169, 45);
     181      this.layoutGroupBox.TabIndex = 5;
     182      this.layoutGroupBox.TabStop = false;
     183      this.layoutGroupBox.Text = "Layout";
     184      //
     185      // columnsTextBox
     186      //
     187      this.columnsTextBox.Location = new System.Drawing.Point(66, 17);
     188      this.columnsTextBox.Name = "columnsTextBox";
     189      this.columnsTextBox.Size = new System.Drawing.Size(94, 20);
     190      this.columnsTextBox.TabIndex = 1;
     191      this.columnsTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.columnsTextBox_Validating);
     192      this.columnsTextBox.Validated += new System.EventHandler(this.columnsTextBox_Validated);
     193      //
     194      // columnsLabel
     195      //
     196      this.columnsLabel.AutoSize = true;
     197      this.columnsLabel.Location = new System.Drawing.Point(7, 20);
     198      this.columnsLabel.Name = "columnsLabel";
     199      this.columnsLabel.Size = new System.Drawing.Size(50, 13);
     200      this.columnsLabel.TabIndex = 0;
     201      this.columnsLabel.Text = "Columns:";
    164202      //
    165203      // scrollPanel
     
    171209      this.scrollPanel.Size = new System.Drawing.Size(542, 648);
    172210      this.scrollPanel.TabIndex = 0;
     211      //
     212      // errorProvider
     213      //
     214      this.errorProvider.ContainerControl = this;
    173215      //
    174216      // RegressionSolutionTargetResponseGradientView
     
    187229      this.configSplitContainer.ResumeLayout(false);
    188230      this.variableGroupBox.ResumeLayout(false);
     231      this.layoutGroupBox.ResumeLayout(false);
     232      this.layoutGroupBox.PerformLayout();
    189233      this.scrollPanel.ResumeLayout(false);
    190234      this.scrollPanel.PerformLayout();
     235      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
    191236      this.ResumeLayout(false);
    192237
     
    205250    private System.Windows.Forms.GroupBox variableGroupBox;
    206251    private System.Windows.Forms.Panel scrollPanel;
     252    private System.Windows.Forms.GroupBox layoutGroupBox;
     253    private System.Windows.Forms.TextBox columnsTextBox;
     254    private System.Windows.Forms.Label columnsLabel;
     255    private System.Windows.Forms.ErrorProvider errorProvider;
    207256  }
    208257}
Note: See TracChangeset for help on using the changeset viewer.