Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/15/17 16:26:34 (7 years ago)
Author:
pfleck
Message:

#2713 Reverted the separation of the DataTable/ScatterPlotView in -View and -Control.
Instead, a ShowName property is added to control whether the name-textbox and the info-label from the NamedItemView are shown.

File:
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Analysis.Views/3.3/DataTableView.Designer.cs

    r14981 r14982  
    2121
    2222namespace HeuristicLab.Analysis.Views {
    23   partial class DataTableControl {
     23  partial class DataTableView {
    2424    /// <summary>
    2525    /// Required designer variable.
     
    5252      this.chart = new HeuristicLab.Visualization.ChartControlsExtensions.EnhancedChart();
    5353      this.configureToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     54      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
    5455      ((System.ComponentModel.ISupportInitialize)(this.chart)).BeginInit();
    5556      this.SuspendLayout();
    5657      //
     58      // nameTextBox
     59      //
     60      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
     61      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
     62      this.nameTextBox.Location = new System.Drawing.Point(55, 0);
     63      this.nameTextBox.Size = new System.Drawing.Size(279, 20);
     64      //
     65      // infoLabel
     66      //
     67      this.infoLabel.Location = new System.Drawing.Point(340, 3);
     68      //
    5769      // chart
    5870      //
    59       this.chart.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
    60             | System.Windows.Forms.AnchorStyles.Left) 
     71      this.chart.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     72            | System.Windows.Forms.AnchorStyles.Left)
    6173            | System.Windows.Forms.AnchorStyles.Right)));
    6274      this.chart.BorderlineColor = System.Drawing.Color.Black;
     
    7486      legend1.Name = "Default";
    7587      this.chart.Legends.Add(legend1);
    76       this.chart.Location = new System.Drawing.Point(0, 0);
     88      this.chart.Location = new System.Drawing.Point(0, 26);
    7789      this.chart.Name = "chart";
    7890      series1.ChartArea = "Default";
     
    8092      series1.Name = "Default";
    8193      this.chart.Series.Add(series1);
    82       this.chart.Size = new System.Drawing.Size(359, 274);
     94      this.chart.Size = new System.Drawing.Size(359, 248);
    8395      this.chart.TabIndex = 3;
    8496      this.chart.Text = "chart";
     
    98110      this.configureToolStripMenuItem.Click += new System.EventHandler(this.configureToolStripMenuItem_Click);
    99111      //
    100       // DataTableControl
     112      // DataTableView
    101113      //
    102114      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
    103115      this.Controls.Add(this.chart);
    104       this.Name = "DataTableControl";
     116      this.Name = "DataTableView";
    105117      this.Size = new System.Drawing.Size(359, 274);
     118      this.Controls.SetChildIndex(this.chart, 0);
     119      this.Controls.SetChildIndex(this.nameLabel, 0);
     120      this.Controls.SetChildIndex(this.nameTextBox, 0);
     121      this.Controls.SetChildIndex(this.infoLabel, 0);
     122      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
    106123      ((System.ComponentModel.ISupportInitialize)(this.chart)).EndInit();
    107124      this.ResumeLayout(false);
     125      this.PerformLayout();
    108126
    109127    }
Note: See TracChangeset for help on using the changeset viewer.