Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Analysis.Views/3.3/ScatterPlotView.Designer.cs @ 14617

Last change on this file since 14617 was 14439, checked in by pfleck, 8 years ago

#2713 Moved the charting logic out of DataTableView and ScatterPlotView into new DataTableControl and ScatterPlotControl.
This way, the charts can be reused without the name-textbox and description from the NamedItemView.

File size: 3.6 KB
RevLine 
[8280]1#region License Information
[7829]2/* HeuristicLab
[14185]3 * Copyright (C) 2002-2016 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
[7829]4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22namespace HeuristicLab.Analysis.Views {
23  partial class ScatterPlotView {
[8280]24    /// <summary>
[7829]25    /// Required designer variable.
26    /// </summary>
27    private System.ComponentModel.IContainer components = null;
28
[8280]29    /// <summary>
[7829]30    /// Clean up any resources being used.
31    /// </summary>
32    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
33    protected override void Dispose(bool disposing) {
[8280]34      if (disposing) {
35        if (components != null) components.Dispose();
[7829]36      }
37      base.Dispose(disposing);
38    }
39
[8280]40    #region Component Designer generated code
[7829]41
[8280]42    /// <summary>
43    /// Required method for Designer support - do not modify
[7829]44    /// the contents of this method with the code editor.
45    /// </summary>
46    private void InitializeComponent() {
[14439]47      this.chart = new HeuristicLab.Analysis.Views.ScatterPlotControl();
[7829]48      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
49      this.SuspendLayout();
50      //
51      // nameTextBox
52      //
53      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
54      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
[8280]55      this.nameTextBox.Location = new System.Drawing.Point(55, 0);
56      this.nameTextBox.Size = new System.Drawing.Size(279, 20);
[7829]57      //
[8280]58      // infoLabel
59      //
60      this.infoLabel.Location = new System.Drawing.Point(340, 3);
61      //
[7829]62      // chart
63      //
[8280]64      this.chart.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
65                  | System.Windows.Forms.AnchorStyles.Left)
66                  | System.Windows.Forms.AnchorStyles.Right)));
[7829]67      this.chart.Location = new System.Drawing.Point(0, 26);
68      this.chart.Name = "chart";
[8280]69      this.chart.Size = new System.Drawing.Size(359, 248);
70      this.chart.TabIndex = 3;
71      this.chart.Text = "chart";
[7829]72      //
73      // ScatterPlotView
74      //
75      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
[8280]76      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
[7829]77      this.Controls.Add(this.chart);
78      this.Name = "ScatterPlotView";
[8280]79      this.Size = new System.Drawing.Size(359, 274);
[7829]80      this.Controls.SetChildIndex(this.infoLabel, 0);
81      this.Controls.SetChildIndex(this.chart, 0);
82      this.Controls.SetChildIndex(this.nameLabel, 0);
83      this.Controls.SetChildIndex(this.nameTextBox, 0);
84      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
85      this.ResumeLayout(false);
86      this.PerformLayout();
87
88    }
89    #endregion
90
[14439]91    protected HeuristicLab.Analysis.Views.ScatterPlotControl chart;
[7829]92  }
93}
Note: See TracBrowser for help on using the repository browser.