Free cookie consent management tool by TermsFeed Policy Generator

source: stable/HeuristicLab.DataPreprocessing.Views/3.4/LineChartView.Designer.cs @ 11170

Last change on this file since 11170 was 10736, checked in by aesterer, 10 years ago

Update chart when data changed

File size: 2.8 KB
Line 
1namespace HeuristicLab.DataPreprocessing.Views {
2  partial class LineChartView {
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.optionsBox = new System.Windows.Forms.GroupBox();
27      this.allInOneCheckBox = new System.Windows.Forms.CheckBox();
28      this.optionsBox.SuspendLayout();
29      this.SuspendLayout();
30      //
31      // optionsBox
32      //
33      this.optionsBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
34      this.optionsBox.Controls.Add(this.allInOneCheckBox);
35      this.optionsBox.Location = new System.Drawing.Point(4, 262);
36      this.optionsBox.Name = "optionsBox";
37      this.optionsBox.Size = new System.Drawing.Size(151, 134);
38      this.optionsBox.TabIndex = 7;
39      this.optionsBox.TabStop = false;
40      this.optionsBox.Text = "Options";
41      //
42      // allInOneCheckBox
43      //
44      this.allInOneCheckBox.AutoSize = true;
45      this.allInOneCheckBox.Checked = true;
46      this.allInOneCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
47      this.allInOneCheckBox.Location = new System.Drawing.Point(6, 19);
48      this.allInOneCheckBox.Name = "allInOneCheckBox";
49      this.allInOneCheckBox.Size = new System.Drawing.Size(69, 17);
50      this.allInOneCheckBox.TabIndex = 0;
51      this.allInOneCheckBox.Text = "All in one";
52      this.allInOneCheckBox.UseVisualStyleBackColor = true;
53      this.allInOneCheckBox.CheckedChanged += new System.EventHandler(this.allInOneCheckBox_CheckedChanged);
54      //
55      // LineChartView
56      //
57      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
58      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
59      this.Controls.Add(this.optionsBox);
60      this.Name = "LineChartView";
61      this.Controls.SetChildIndex(this.optionsBox, 0);
62      this.optionsBox.ResumeLayout(false);
63      this.optionsBox.PerformLayout();
64      this.ResumeLayout(false);
65
66    }
67
68    #endregion
69
70    private System.Windows.Forms.GroupBox optionsBox;
71    private System.Windows.Forms.CheckBox allInOneCheckBox;
72  }
73}
Note: See TracBrowser for help on using the repository browser.