Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.RegressionSolutionGradientView/HeuristicLab.Problems.DataAnalysis.Views/3.4/RegressionSolutionGradientView.Designer.cs @ 13780

Last change on this file since 13780 was 13780, checked in by bburlacu, 8 years ago

#2597: Initial commit implementing gradient view and chart.

File size: 3.6 KB
Line 
1namespace HeuristicLab.Problems.DataAnalysis.Views {
2  partial class RegressionSolutionGradientView {
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      this.label1 = new System.Windows.Forms.Label();
28      this.variableComboBox = new System.Windows.Forms.ComboBox();
29      this.gradientChart1 = new HeuristicLab.Problems.DataAnalysis.Views.GradientChart();
30      ((System.ComponentModel.ISupportInitialize)(this.gradientChart1)).BeginInit();
31      this.SuspendLayout();
32      //
33      // label1
34      //
35      this.label1.AutoSize = true;
36      this.label1.Location = new System.Drawing.Point(5, 7);
37      this.label1.Name = "label1";
38      this.label1.Size = new System.Drawing.Size(48, 13);
39      this.label1.TabIndex = 1;
40      this.label1.Text = "Variable:";
41      //
42      // variableComboBox
43      //
44      this.variableComboBox.FormattingEnabled = true;
45      this.variableComboBox.Location = new System.Drawing.Point(59, 4);
46      this.variableComboBox.Name = "variableComboBox";
47      this.variableComboBox.Size = new System.Drawing.Size(121, 21);
48      this.variableComboBox.TabIndex = 2;
49      this.variableComboBox.SelectedIndexChanged += new System.EventHandler(this.variableComboBox_SelectedIndexChanged);
50      //
51      // gradientChart1
52      //
53      this.gradientChart1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
54            | System.Windows.Forms.AnchorStyles.Left)
55            | System.Windows.Forms.AnchorStyles.Right)));
56      this.gradientChart1.Location = new System.Drawing.Point(3, 31);
57      this.gradientChart1.Max = 0D;
58      this.gradientChart1.Min = 0D;
59      this.gradientChart1.Name = "gradientChart1";
60      this.gradientChart1.Points = 0;
61      this.gradientChart1.Row = 0;
62      this.gradientChart1.Size = new System.Drawing.Size(944, 532);
63      this.gradientChart1.TabIndex = 3;
64      this.gradientChart1.Text = "gradientChart1";
65      this.gradientChart1.UseMedianValues = false;
66      this.gradientChart1.Variable = null;
67      //
68      // RegressionSolutionGradientView
69      //
70      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
71      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
72      this.Controls.Add(this.gradientChart1);
73      this.Controls.Add(this.variableComboBox);
74      this.Controls.Add(this.label1);
75      this.Name = "RegressionSolutionGradientView";
76      this.Size = new System.Drawing.Size(950, 566);
77      ((System.ComponentModel.ISupportInitialize)(this.gradientChart1)).EndInit();
78      this.ResumeLayout(false);
79      this.PerformLayout();
80
81    }
82
83    #endregion
84    private System.Windows.Forms.Label label1;
85    protected System.Windows.Forms.ComboBox variableComboBox;
86    private GradientChart gradientChart1;
87  }
88}
Note: See TracBrowser for help on using the repository browser.