Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Visualization.ChartControlsExtensions/3.3/HistogramControl.Designer.cs @ 11171

Last change on this file since 11171 was 11171, checked in by ascheibe, 10 years ago

#2115 merged r11170 (copyright update) into trunk

File size: 5.7 KB
RevLine 
[5970]1#region License Information
2/* HeuristicLab
[11171]3 * Copyright (C) 2002-2014 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
[5970]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.Visualization.ChartControlsExtensions {
23  partial class HistogramControl {
24    /// <summary>
25    /// Required designer variable.
26    /// </summary>
27    private System.ComponentModel.IContainer components = null;
28
29    /// <summary>
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) {
34      if (disposing && (components != null)) {
35        components.Dispose();
36      }
37      base.Dispose(disposing);
38    }
39
40    #region Component Designer generated code
41
42    /// <summary>
43    /// Required method for Designer support - do not modify
44    /// the contents of this method with the code editor.
45    /// </summary>
46    private void InitializeComponent() {
47      System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
48      System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series();
49      this.chart = new HeuristicLab.Visualization.ChartControlsExtensions.EnhancedChart();
50      this.binsNumericUpDown = new System.Windows.Forms.NumericUpDown();
51      this.label1 = new System.Windows.Forms.Label();
52      this.exactCheckBox = new System.Windows.Forms.CheckBox();
53      ((System.ComponentModel.ISupportInitialize)(this.chart)).BeginInit();
54      ((System.ComponentModel.ISupportInitialize)(this.binsNumericUpDown)).BeginInit();
55      this.SuspendLayout();
56      //
57      // chart
58      //
59      this.chart.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
60                  | System.Windows.Forms.AnchorStyles.Left)
61                  | System.Windows.Forms.AnchorStyles.Right)));
62      chartArea1.Name = "ChartArea1";
63      this.chart.ChartAreas.Add(chartArea1);
64      this.chart.Location = new System.Drawing.Point(0, 27);
65      this.chart.Name = "chart";
66      series1.ChartArea = "ChartArea1";
67      series1.Name = "Series1";
68      this.chart.Series.Add(series1);
69      this.chart.Size = new System.Drawing.Size(465, 336);
70      this.chart.TabIndex = 0;
71      //
72      // binsNumericUpDown
73      //
74      this.binsNumericUpDown.Location = new System.Drawing.Point(91, 3);
75      this.binsNumericUpDown.Maximum = new decimal(new int[] {
76            100000,
77            0,
78            0,
79            0});
80      this.binsNumericUpDown.Minimum = new decimal(new int[] {
81            1,
82            0,
83            0,
84            0});
85      this.binsNumericUpDown.Name = "binsNumericUpDown";
86      this.binsNumericUpDown.Size = new System.Drawing.Size(61, 20);
87      this.binsNumericUpDown.TabIndex = 1;
88      this.binsNumericUpDown.Value = new decimal(new int[] {
89            10,
90            0,
91            0,
92            0});
93      this.binsNumericUpDown.ValueChanged += new System.EventHandler(this.binsNumericUpDown_ValueChanged);
94      //
95      // label1
96      //
97      this.label1.AutoSize = true;
98      this.label1.Location = new System.Drawing.Point(3, 5);
99      this.label1.Name = "label1";
100      this.label1.Size = new System.Drawing.Size(82, 13);
101      this.label1.TabIndex = 2;
102      this.label1.Text = "Number of Bins:";
103      //
104      // exactCheckBox
105      //
106      this.exactCheckBox.AutoSize = true;
107      this.exactCheckBox.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
108      this.exactCheckBox.Location = new System.Drawing.Point(158, 4);
109      this.exactCheckBox.Name = "exactCheckBox";
110      this.exactCheckBox.Size = new System.Drawing.Size(56, 17);
111      this.exactCheckBox.TabIndex = 3;
112      this.exactCheckBox.Text = "Exact:";
113      this.exactCheckBox.UseVisualStyleBackColor = true;
114      this.exactCheckBox.CheckedChanged += new System.EventHandler(this.exactCheckBox_CheckedChanged);
115      //
116      // HistogramControl
117      //
118      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
[7967]119      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
[5970]120      this.Controls.Add(this.exactCheckBox);
121      this.Controls.Add(this.label1);
122      this.Controls.Add(this.binsNumericUpDown);
123      this.Controls.Add(this.chart);
124      this.Name = "HistogramControl";
125      this.Size = new System.Drawing.Size(465, 363);
126      ((System.ComponentModel.ISupportInitialize)(this.chart)).EndInit();
127      ((System.ComponentModel.ISupportInitialize)(this.binsNumericUpDown)).EndInit();
128      this.ResumeLayout(false);
129      this.PerformLayout();
130
131    }
132
133    #endregion
134
135    private EnhancedChart chart;
136    private System.Windows.Forms.NumericUpDown binsNumericUpDown;
137    private System.Windows.Forms.Label label1;
138    private System.Windows.Forms.CheckBox exactCheckBox;
139  }
140}
Note: See TracBrowser for help on using the repository browser.