Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/16/11 11:48:21 (13 years ago)
Author:
abeham
Message:

#1465

  • added sorting of series to move them back and forth
    • the implementation currently is quite memory intensive in that all data rows are cloned, the collection is cleared and then they're readded in the correct order. Since the underlying collection is a collection and not a list I don't have the possibilities to insert them.
  • fixed histogram configuration
  • added a crude check if there are incompatibilities with bars
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/histogram/HeuristicLab.Analysis.Views/3.3/DataTableVisualPropertiesDialog.Designer.cs

    r6014 r6016  
    5151      this.splitContainer = new System.Windows.Forms.SplitContainer();
    5252      this.seriesListView = new System.Windows.Forms.ListView();
     53      this.dataRowVisualPropertiesControl = new HeuristicLab.Analysis.Views.DataRowVisualPropertiesControl();
    5354      this.chartTabPage = new System.Windows.Forms.TabPage();
    54       this.dataRowVisualPropertiesControl = new HeuristicLab.Analysis.Views.DataRowVisualPropertiesControl();
    5555      this.dataTableVisualPropertiesControl = new HeuristicLab.Analysis.Views.DataTableVisualPropertiesControl();
     56      this.upButton = new System.Windows.Forms.Button();
     57      this.downButton = new System.Windows.Forms.Button();
    5658      this.tabControl.SuspendLayout();
    5759      this.seriesTabPage.SuspendLayout();
     
    120122      // splitContainer.Panel1
    121123      //
     124      this.splitContainer.Panel1.Controls.Add(this.downButton);
     125      this.splitContainer.Panel1.Controls.Add(this.upButton);
    122126      this.splitContainer.Panel1.Controls.Add(this.seriesListView);
    123127      this.splitContainer.Panel1MinSize = 20;
     
    133137      // seriesListView
    134138      //
    135       this.seriesListView.Dock = System.Windows.Forms.DockStyle.Fill;
     139      this.seriesListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     140                  | System.Windows.Forms.AnchorStyles.Left)
     141                  | System.Windows.Forms.AnchorStyles.Right)));
    136142      this.seriesListView.HideSelection = false;
    137       this.seriesListView.Location = new System.Drawing.Point(0, 0);
     143      this.seriesListView.Location = new System.Drawing.Point(0, 28);
    138144      this.seriesListView.MultiSelect = false;
    139145      this.seriesListView.Name = "seriesListView";
    140146      this.seriesListView.ShowGroups = false;
    141       this.seriesListView.Size = new System.Drawing.Size(125, 318);
     147      this.seriesListView.Size = new System.Drawing.Size(125, 289);
    142148      this.seriesListView.TabIndex = 0;
    143149      this.seriesListView.UseCompatibleStateImageBehavior = false;
    144150      this.seriesListView.View = System.Windows.Forms.View.SmallIcon;
    145151      this.seriesListView.SelectedIndexChanged += new System.EventHandler(this.seriesListView_SelectedIndexChanged);
     152      //
     153      // dataRowVisualPropertiesControl
     154      //
     155      this.dataRowVisualPropertiesControl.Content = null;
     156      this.dataRowVisualPropertiesControl.Dock = System.Windows.Forms.DockStyle.Fill;
     157      this.dataRowVisualPropertiesControl.Location = new System.Drawing.Point(0, 0);
     158      this.dataRowVisualPropertiesControl.Name = "dataRowVisualPropertiesControl";
     159      this.dataRowVisualPropertiesControl.Size = new System.Drawing.Size(331, 318);
     160      this.dataRowVisualPropertiesControl.TabIndex = 0;
    146161      //
    147162      // chartTabPage
     
    156171      this.chartTabPage.UseVisualStyleBackColor = true;
    157172      //
    158       // dataRowVisualPropertiesControl
    159       //
    160       this.dataRowVisualPropertiesControl.Content = null;
    161       this.dataRowVisualPropertiesControl.Dock = System.Windows.Forms.DockStyle.Fill;
    162       this.dataRowVisualPropertiesControl.Location = new System.Drawing.Point(0, 0);
    163       this.dataRowVisualPropertiesControl.Name = "dataRowVisualPropertiesControl";
    164       this.dataRowVisualPropertiesControl.Size = new System.Drawing.Size(331, 318);
    165       this.dataRowVisualPropertiesControl.TabIndex = 0;
    166       //
    167173      // dataTableVisualPropertiesControl
    168174      //
     
    173179      this.dataTableVisualPropertiesControl.Size = new System.Drawing.Size(460, 318);
    174180      this.dataTableVisualPropertiesControl.TabIndex = 0;
     181      //
     182      // upButton
     183      //
     184      this.upButton.Location = new System.Drawing.Point(-1, 3);
     185      this.upButton.Name = "upButton";
     186      this.upButton.Size = new System.Drawing.Size(26, 23);
     187      this.upButton.TabIndex = 1;
     188      this.upButton.Text = "Up";
     189      this.upButton.UseVisualStyleBackColor = true;
     190      this.upButton.Click += new System.EventHandler(this.upButton_Click);
     191      //
     192      // downButton
     193      //
     194      this.downButton.Location = new System.Drawing.Point(27, 3);
     195      this.downButton.Name = "downButton";
     196      this.downButton.Size = new System.Drawing.Size(26, 23);
     197      this.downButton.TabIndex = 1;
     198      this.downButton.Text = "Down";
     199      this.downButton.UseVisualStyleBackColor = true;
     200      this.downButton.Click += new System.EventHandler(this.downButton_Click);
    175201      //
    176202      // DataTableVisualPropertiesDialog
     
    208234    private DataRowVisualPropertiesControl dataRowVisualPropertiesControl;
    209235    private DataTableVisualPropertiesControl dataTableVisualPropertiesControl;
     236    private System.Windows.Forms.Button downButton;
     237    private System.Windows.Forms.Button upButton;
    210238  }
    211239}
Note: See TracChangeset for help on using the changeset viewer.