Free cookie consent management tool by TermsFeed Policy Generator

source: branches/ALPS/HeuristicLab.Analysis.Views/3.3/HistogramControl.Designer.cs @ 12018

Last change on this file since 12018 was 12018, checked in by pfleck, 9 years ago

#2269

  • merged trunk after 3.3.11 release
  • updated copyright and plugin version in ALPS plugin
  • removed old ALPS samples based on an userdefined alg
File size: 6.1 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
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
22using HeuristicLab.Visualization.ChartControlsExtensions;
23
24namespace HeuristicLab.Analysis.Views {
25  partial class HistogramControl {
26    /// <summary>
27    /// Required designer variable.
28    /// </summary>
29    private System.ComponentModel.IContainer components = null;
30
31    /// <summary>
32    /// Clean up any resources being used.
33    /// </summary>
34    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
35    protected override void Dispose(bool disposing) {
36      if (disposing && (components != null)) {
37        components.Dispose();
38      }
39      base.Dispose(disposing);
40    }
41
42    #region Component Designer generated code
43
44    /// <summary>
45    /// Required method for Designer support - do not modify
46    /// the contents of this method with the code editor.
47    /// </summary>
48    private void InitializeComponent() {
49      this.components = new System.ComponentModel.Container();
50      System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
51      System.Windows.Forms.DataVisualization.Charting.Legend legend1 = new System.Windows.Forms.DataVisualization.Charting.Legend();
52      System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series();
53      this.chart = new HeuristicLab.Visualization.ChartControlsExtensions.EnhancedChart();
54      this.binsNumericUpDown = new System.Windows.Forms.NumericUpDown();
55      this.label1 = new System.Windows.Forms.Label();
56      this.exactCheckBox = new System.Windows.Forms.CheckBox();
57      ((System.ComponentModel.ISupportInitialize)(this.chart)).BeginInit();
58      ((System.ComponentModel.ISupportInitialize)(this.binsNumericUpDown)).BeginInit();
59      this.SuspendLayout();
60      //
61      // chart
62      //
63      this.chart.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
64            | System.Windows.Forms.AnchorStyles.Left)
65            | System.Windows.Forms.AnchorStyles.Right)));
66      chartArea1.Name = "ChartArea1";
67      this.chart.ChartAreas.Add(chartArea1);
68      legend1.Alignment = System.Drawing.StringAlignment.Center;
69      legend1.Docking = System.Windows.Forms.DataVisualization.Charting.Docking.Top;
70      legend1.Name = "Default";
71      this.chart.Legends.Add(legend1);
72      this.chart.Location = new System.Drawing.Point(0, 27);
73      this.chart.Name = "chart";
74      series1.ChartArea = "ChartArea1";
75      series1.Legend = "Default";
76      series1.Name = "Series1";
77      this.chart.Series.Add(series1);
78      this.chart.Size = new System.Drawing.Size(465, 336);
79      this.chart.TabIndex = 0;
80      //
81      // binsNumericUpDown
82      //
83      this.binsNumericUpDown.Location = new System.Drawing.Point(91, 3);
84      this.binsNumericUpDown.Maximum = new decimal(new int[] {
85            100000,
86            0,
87            0,
88            0});
89      this.binsNumericUpDown.Minimum = new decimal(new int[] {
90            1,
91            0,
92            0,
93            0});
94      this.binsNumericUpDown.Name = "binsNumericUpDown";
95      this.binsNumericUpDown.Size = new System.Drawing.Size(61, 20);
96      this.binsNumericUpDown.TabIndex = 1;
97      this.binsNumericUpDown.Value = new decimal(new int[] {
98            10,
99            0,
100            0,
101            0});
102      this.binsNumericUpDown.ValueChanged += new System.EventHandler(this.binsNumericUpDown_ValueChanged);
103      //
104      // label1
105      //
106      this.label1.AutoSize = true;
107      this.label1.Location = new System.Drawing.Point(3, 5);
108      this.label1.Name = "label1";
109      this.label1.Size = new System.Drawing.Size(82, 13);
110      this.label1.TabIndex = 2;
111      this.label1.Text = "Number of Bins:";
112      //
113      // exactCheckBox
114      //
115      this.exactCheckBox.AutoSize = true;
116      this.exactCheckBox.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
117      this.exactCheckBox.Location = new System.Drawing.Point(158, 4);
118      this.exactCheckBox.Name = "exactCheckBox";
119      this.exactCheckBox.Size = new System.Drawing.Size(56, 17);
120      this.exactCheckBox.TabIndex = 3;
121      this.exactCheckBox.Text = "Exact:";
122      this.exactCheckBox.UseVisualStyleBackColor = true;
123      this.exactCheckBox.CheckedChanged += new System.EventHandler(this.exactCheckBox_CheckedChanged);
124      //
125      // HistogramControl
126      //
127      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
128      this.Controls.Add(this.exactCheckBox);
129      this.Controls.Add(this.label1);
130      this.Controls.Add(this.binsNumericUpDown);
131      this.Controls.Add(this.chart);
132      this.Name = "HistogramControl";
133      this.Size = new System.Drawing.Size(465, 363);
134      ((System.ComponentModel.ISupportInitialize)(this.chart)).EndInit();
135      ((System.ComponentModel.ISupportInitialize)(this.binsNumericUpDown)).EndInit();
136      this.ResumeLayout(false);
137      this.PerformLayout();
138
139    }
140
141    #endregion
142
143    private EnhancedChart chart;
144    private System.Windows.Forms.NumericUpDown binsNumericUpDown;
145    private System.Windows.Forms.Label label1;
146    private System.Windows.Forms.CheckBox exactCheckBox;
147  }
148}
Note: See TracBrowser for help on using the repository browser.