Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.CEDMA.Core/ResultListView.Designer.cs @ 553

Last change on this file since 553 was 553, checked in by gkronber, 16 years ago

added a results-tab in the cedma console which contains a data chart that can be used to display histograms and scatter plots for any result value.

File size: 4.5 KB
Line 
1namespace HeuristicLab.CEDMA.Core {
2  partial class ResultListView {
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.dataChart = new HeuristicLab.Charting.Data.DataChartControl();
27      this.xAxisLabel = new System.Windows.Forms.Label();
28      this.xAxisComboBox = new System.Windows.Forms.ComboBox();
29      this.yAxisLabel = new System.Windows.Forms.Label();
30      this.yAxisComboBox = new System.Windows.Forms.ComboBox();
31      this.SuspendLayout();
32      //
33      // dataChart
34      //
35      this.dataChart.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
36                  | System.Windows.Forms.AnchorStyles.Left)
37                  | System.Windows.Forms.AnchorStyles.Right)));
38      this.dataChart.BackColor = System.Drawing.SystemColors.Control;
39      this.dataChart.Chart = null;
40      this.dataChart.Location = new System.Drawing.Point(3, 30);
41      this.dataChart.Name = "dataChart";
42      this.dataChart.ScaleOnResize = true;
43      this.dataChart.Size = new System.Drawing.Size(447, 390);
44      this.dataChart.TabIndex = 9;
45      //
46      // xAxisLabel
47      //
48      this.xAxisLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
49      this.xAxisLabel.AutoSize = true;
50      this.xAxisLabel.Location = new System.Drawing.Point(305, 429);
51      this.xAxisLabel.Name = "xAxisLabel";
52      this.xAxisLabel.Size = new System.Drawing.Size(15, 13);
53      this.xAxisLabel.TabIndex = 8;
54      this.xAxisLabel.Text = "x:";
55      //
56      // xAxisComboBox
57      //
58      this.xAxisComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
59      this.xAxisComboBox.FormattingEnabled = true;
60      this.xAxisComboBox.Location = new System.Drawing.Point(326, 426);
61      this.xAxisComboBox.Name = "xAxisComboBox";
62      this.xAxisComboBox.Size = new System.Drawing.Size(121, 21);
63      this.xAxisComboBox.TabIndex = 7;
64      this.xAxisComboBox.SelectedIndexChanged += new System.EventHandler(this.xAxisComboBox_SelectedIndexChanged);
65      //
66      // yAxisLabel
67      //
68      this.yAxisLabel.AutoSize = true;
69      this.yAxisLabel.Location = new System.Drawing.Point(3, 6);
70      this.yAxisLabel.Name = "yAxisLabel";
71      this.yAxisLabel.Size = new System.Drawing.Size(15, 13);
72      this.yAxisLabel.TabIndex = 6;
73      this.yAxisLabel.Text = "y:";
74      //
75      // yAxisComboBox
76      //
77      this.yAxisComboBox.FormattingEnabled = true;
78      this.yAxisComboBox.Location = new System.Drawing.Point(24, 3);
79      this.yAxisComboBox.Name = "yAxisComboBox";
80      this.yAxisComboBox.Size = new System.Drawing.Size(121, 21);
81      this.yAxisComboBox.TabIndex = 5;
82      this.yAxisComboBox.SelectedIndexChanged += new System.EventHandler(this.yAxisComboBox_SelectedIndexChanged);
83      //
84      // ResultView
85      //
86      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
87      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
88      this.Controls.Add(this.dataChart);
89      this.Controls.Add(this.xAxisLabel);
90      this.Controls.Add(this.xAxisComboBox);
91      this.Controls.Add(this.yAxisLabel);
92      this.Controls.Add(this.yAxisComboBox);
93      this.Name = "ResultView";
94      this.Size = new System.Drawing.Size(450, 450);
95      this.ResumeLayout(false);
96      this.PerformLayout();
97
98    }
99
100    #endregion
101
102    private HeuristicLab.Charting.Data.DataChartControl dataChart;
103    private System.Windows.Forms.Label xAxisLabel;
104    private System.Windows.Forms.ComboBox xAxisComboBox;
105    private System.Windows.Forms.Label yAxisLabel;
106    private System.Windows.Forms.ComboBox yAxisComboBox;
107  }
108}
Note: See TracBrowser for help on using the repository browser.