Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/11/16 16:16:40 (7 years ago)
Author:
pfleck
Message:

#2698

  • Implemented (re)checking of variables in multi-scatterplot.
  • Added 2 sliders for changing the chart size.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.DataPreprocessing.Views/3.4/ScatterPlotMultiView.Designer.cs

    r14384 r14388  
    5252      this.bodyScrollPanel = new System.Windows.Forms.Panel();
    5353      this.bodyTableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
     54      this.sizeGroupBox = new System.Windows.Forms.GroupBox();
     55      this.heightLabel = new System.Windows.Forms.Label();
     56      this.widthLabel = new System.Windows.Forms.Label();
     57      this.heightTrackBar = new System.Windows.Forms.TrackBar();
     58      this.widthTrackBar = new System.Windows.Forms.TrackBar();
    5459      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
    5560      this.splitContainer.Panel1.SuspendLayout();
     
    6065      this.rowHeaderScrollPanel.SuspendLayout();
    6166      this.bodyScrollPanel.SuspendLayout();
     67      this.sizeGroupBox.SuspendLayout();
     68      ((System.ComponentModel.ISupportInitialize)(this.heightTrackBar)).BeginInit();
     69      ((System.ComponentModel.ISupportInitialize)(this.widthTrackBar)).BeginInit();
    6270      this.SuspendLayout();
    6371      //
     72      // checkedItemList
     73      //
     74      this.checkedItemList.Size = new System.Drawing.Size(113, 369);
     75      //
    6476      // splitContainer
    6577      //
    6678      //
     79      // splitContainer.Panel1
     80      //
     81      this.splitContainer.Panel1.Controls.Add(this.sizeGroupBox);
     82      //
    6783      // splitContainer.Panel2
    6884      //
    6985      this.splitContainer.Panel2.Controls.Add(this.frameTableLayoutPanel);
     86      this.splitContainer.Size = new System.Drawing.Size(863, 520);
     87      this.splitContainer.SplitterDistance = 120;
    7088      //
    7189      // frameTableLayoutPanel
     
    83101      this.frameTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 40F));
    84102      this.frameTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
    85       this.frameTableLayoutPanel.Size = new System.Drawing.Size(739, 517);
     103      this.frameTableLayoutPanel.Size = new System.Drawing.Size(739, 520);
    86104      this.frameTableLayoutPanel.TabIndex = 0;
    87105      //
     
    120138      this.rowHeaderScrollPanel.Margin = new System.Windows.Forms.Padding(0);
    121139      this.rowHeaderScrollPanel.Name = "rowHeaderScrollPanel";
    122       this.rowHeaderScrollPanel.Size = new System.Drawing.Size(40, 477);
     140      this.rowHeaderScrollPanel.Size = new System.Drawing.Size(40, 480);
    123141      this.rowHeaderScrollPanel.TabIndex = 4;
    124142      //
     
    148166      this.bodyScrollPanel.Margin = new System.Windows.Forms.Padding(0);
    149167      this.bodyScrollPanel.Name = "bodyScrollPanel";
    150       this.bodyScrollPanel.Size = new System.Drawing.Size(699, 477);
     168      this.bodyScrollPanel.Size = new System.Drawing.Size(699, 480);
    151169      this.bodyScrollPanel.TabIndex = 5;
    152170      this.bodyScrollPanel.Scroll += new System.Windows.Forms.ScrollEventHandler(this.bodyScrollPanel_Scroll);
     
    168186      this.bodyTableLayoutPanel.TabIndex = 0;
    169187      //
     188      // sizeGroupBox
     189      //
     190      this.sizeGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
     191            | System.Windows.Forms.AnchorStyles.Right)));
     192      this.sizeGroupBox.Controls.Add(this.heightLabel);
     193      this.sizeGroupBox.Controls.Add(this.widthLabel);
     194      this.sizeGroupBox.Controls.Add(this.heightTrackBar);
     195      this.sizeGroupBox.Controls.Add(this.widthTrackBar);
     196      this.sizeGroupBox.Location = new System.Drawing.Point(4, 379);
     197      this.sizeGroupBox.Name = "sizeGroupBox";
     198      this.sizeGroupBox.Size = new System.Drawing.Size(113, 124);
     199      this.sizeGroupBox.TabIndex = 5;
     200      this.sizeGroupBox.TabStop = false;
     201      this.sizeGroupBox.Text = "Chart Size";
     202      //
     203      // heightLabel
     204      //
     205      this.heightLabel.AutoSize = true;
     206      this.heightLabel.Location = new System.Drawing.Point(6, 64);
     207      this.heightLabel.Name = "heightLabel";
     208      this.heightLabel.Size = new System.Drawing.Size(41, 13);
     209      this.heightLabel.TabIndex = 2;
     210      this.heightLabel.Text = "Height:";
     211      //
     212      // widthLabel
     213      //
     214      this.widthLabel.AutoSize = true;
     215      this.widthLabel.Location = new System.Drawing.Point(6, 16);
     216      this.widthLabel.Name = "widthLabel";
     217      this.widthLabel.Size = new System.Drawing.Size(38, 13);
     218      this.widthLabel.TabIndex = 1;
     219      this.widthLabel.Text = "Width:";
     220      //
     221      // heightTrackBar
     222      //
     223      this.heightTrackBar.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     224            | System.Windows.Forms.AnchorStyles.Right)));
     225      this.heightTrackBar.LargeChange = 50;
     226      this.heightTrackBar.Location = new System.Drawing.Point(6, 83);
     227      this.heightTrackBar.Maximum = 100;
     228      this.heightTrackBar.Name = "heightTrackBar";
     229      this.heightTrackBar.Size = new System.Drawing.Size(101, 45);
     230      this.heightTrackBar.SmallChange = 10;
     231      this.heightTrackBar.TabIndex = 0;
     232      this.heightTrackBar.TickFrequency = 10;
     233      this.heightTrackBar.Value = 20;
     234      this.heightTrackBar.ValueChanged += new System.EventHandler(this.heightTrackBar_ValueChanged);
     235      //
     236      // widthTrackBar
     237      //
     238      this.widthTrackBar.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     239            | System.Windows.Forms.AnchorStyles.Right)));
     240      this.widthTrackBar.LargeChange = 50;
     241      this.widthTrackBar.Location = new System.Drawing.Point(6, 32);
     242      this.widthTrackBar.Maximum = 100;
     243      this.widthTrackBar.Name = "widthTrackBar";
     244      this.widthTrackBar.Size = new System.Drawing.Size(101, 45);
     245      this.widthTrackBar.SmallChange = 10;
     246      this.widthTrackBar.TabIndex = 0;
     247      this.widthTrackBar.TickFrequency = 10;
     248      this.widthTrackBar.Value = 20;
     249      this.widthTrackBar.ValueChanged += new System.EventHandler(this.widthTrackBar_ValueChanged);
     250      //
    170251      // ScatterPlotMultiView
    171252      //
     
    173254      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
    174255      this.Name = "ScatterPlotMultiView";
    175       this.Size = new System.Drawing.Size(863, 517);
     256      this.Size = new System.Drawing.Size(863, 520);
    176257      this.splitContainer.Panel1.ResumeLayout(false);
    177258      this.splitContainer.Panel2.ResumeLayout(false);
     
    185266      this.bodyScrollPanel.ResumeLayout(false);
    186267      this.bodyScrollPanel.PerformLayout();
     268      this.sizeGroupBox.ResumeLayout(false);
     269      this.sizeGroupBox.PerformLayout();
     270      ((System.ComponentModel.ISupportInitialize)(this.heightTrackBar)).EndInit();
     271      ((System.ComponentModel.ISupportInitialize)(this.widthTrackBar)).EndInit();
    187272      this.ResumeLayout(false);
    188273
     
    198283    private System.Windows.Forms.Panel rowHeaderScrollPanel;
    199284    private System.Windows.Forms.Panel bodyScrollPanel;
     285    private System.Windows.Forms.GroupBox sizeGroupBox;
     286    private System.Windows.Forms.TrackBar widthTrackBar;
     287    private System.Windows.Forms.TrackBar heightTrackBar;
     288    private System.Windows.Forms.Label heightLabel;
     289    private System.Windows.Forms.Label widthLabel;
    200290  }
    201291}
Note: See TracChangeset for help on using the changeset viewer.