Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.DataAnalysis.Views/3.4/Regression/RegressionSolutionErrorCharacteristicsCurveView.Designer.cs @ 8102

Last change on this file since 8102 was 8102, checked in by sforsten, 12 years ago

#1811: added tool tip to explain that a model can be opened by double-clicking

File size: 4.2 KB
Line 
1namespace HeuristicLab.Problems.DataAnalysis.Views {
2  partial class RegressionSolutionErrorCharacteristicsCurveView {
3    /// <summary>
4    /// Required designer variable.
5    /// </summary>
6    private System.ComponentModel.IContainer components = null;
7
8    /// <summary>
9    /// Clean up any resources being used.
10    /// </summary>
11    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
12    protected override void Dispose(bool disposing) {
13      if (disposing && (components != null)) {
14        components.Dispose();
15      }
16      base.Dispose(disposing);
17    }
18
19    #region Component Designer generated code
20
21    /// <summary>
22    /// Required method for Designer support - do not modify
23    /// the contents of this method with the code editor.
24    /// </summary>
25    private void InitializeComponent() {
26      this.components = new System.ComponentModel.Container();
27      System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
28      System.Windows.Forms.DataVisualization.Charting.Legend legend1 = new System.Windows.Forms.DataVisualization.Charting.Legend();
29      this.chart = new HeuristicLab.Visualization.ChartControlsExtensions.EnhancedChart();
30      this.label1 = new System.Windows.Forms.Label();
31      this.cmbSamples = new System.Windows.Forms.ComboBox();
32      this.LegendToolTip = new System.Windows.Forms.ToolTip(this.components);
33      ((System.ComponentModel.ISupportInitialize)(this.chart)).BeginInit();
34      this.SuspendLayout();
35      //
36      // chart
37      //
38      this.chart.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
39                  | System.Windows.Forms.AnchorStyles.Left)
40                  | System.Windows.Forms.AnchorStyles.Right)));
41      chartArea1.Name = "ChartArea1";
42      this.chart.ChartAreas.Add(chartArea1);
43      legend1.Alignment = System.Drawing.StringAlignment.Center;
44      legend1.Docking = System.Windows.Forms.DataVisualization.Charting.Docking.Top;
45      legend1.Name = "Legend1";
46      this.chart.Legends.Add(legend1);
47      this.chart.Location = new System.Drawing.Point(6, 28);
48      this.chart.Name = "chart";
49      this.chart.Size = new System.Drawing.Size(366, 202);
50      this.chart.TabIndex = 0;
51      this.chart.Text = "chart";
52      this.chart.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.Chart_MouseDoubleClick);
53      this.chart.MouseMove += new System.Windows.Forms.MouseEventHandler(this.chart_MouseMove);
54      //
55      // label1
56      //
57      this.label1.AutoSize = true;
58      this.label1.Location = new System.Drawing.Point(3, 6);
59      this.label1.Name = "label1";
60      this.label1.Size = new System.Drawing.Size(47, 13);
61      this.label1.TabIndex = 4;
62      this.label1.Text = "Samples";
63      //
64      // cmbSamples
65      //
66      this.cmbSamples.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
67      this.cmbSamples.FormattingEnabled = true;
68      this.cmbSamples.Location = new System.Drawing.Point(56, 3);
69      this.cmbSamples.Name = "cmbSamples";
70      this.cmbSamples.Size = new System.Drawing.Size(121, 21);
71      this.cmbSamples.TabIndex = 3;
72      this.cmbSamples.SelectedIndexChanged += new System.EventHandler(this.cmbSamples_SelectedIndexChanged);
73      //
74      // RegressionSolutionErrorCharacteristicsCurveView
75      //
76      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
77      this.Controls.Add(this.label1);
78      this.Controls.Add(this.cmbSamples);
79      this.Controls.Add(this.chart);
80      this.Name = "RegressionSolutionErrorCharacteristicsCurveView";
81      this.Size = new System.Drawing.Size(366, 230);
82      ((System.ComponentModel.ISupportInitialize)(this.chart)).EndInit();
83      this.ResumeLayout(false);
84      this.PerformLayout();
85
86    }
87
88    #endregion
89
90    protected HeuristicLab.Visualization.ChartControlsExtensions.EnhancedChart chart;
91    protected System.Windows.Forms.Label label1;
92    protected System.Windows.Forms.ComboBox cmbSamples;
93    private System.Windows.Forms.ToolTip LegendToolTip;
94  }
95}
Note: See TracBrowser for help on using the repository browser.