Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Visualization.Test/LineChartTestForm.Designer.cs @ 1038

Last change on this file since 1038 was 1038, checked in by mstoeger, 15 years ago

Modified the XAxis labels so they are always visible at the bottom. (#433)
Added simple layout management to the line chart's root shape containing a title-, lines- and xaxis-area. (#345)

File size: 3.7 KB
Line 
1namespace HeuristicLab.Visualization.Test {
2  partial class LineChartTestForm {
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 Windows Form 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.lineChartGroupBox = new System.Windows.Forms.GroupBox();
27      this.btnResetView = new System.Windows.Forms.Button();
28      this.btnAddRandomValue = new System.Windows.Forms.Button();
29      this.SuspendLayout();
30      //
31      // lineChartGroupBox
32      //
33      this.lineChartGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
34                  | System.Windows.Forms.AnchorStyles.Left)
35                  | System.Windows.Forms.AnchorStyles.Right)));
36      this.lineChartGroupBox.Location = new System.Drawing.Point(12, 12);
37      this.lineChartGroupBox.Name = "lineChartGroupBox";
38      this.lineChartGroupBox.Size = new System.Drawing.Size(673, 376);
39      this.lineChartGroupBox.TabIndex = 0;
40      this.lineChartGroupBox.TabStop = false;
41      this.lineChartGroupBox.Text = "Line Chart";
42      //
43      // btnResetView
44      //
45      this.btnResetView.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
46      this.btnResetView.Location = new System.Drawing.Point(610, 404);
47      this.btnResetView.Name = "btnResetView";
48      this.btnResetView.Size = new System.Drawing.Size(75, 23);
49      this.btnResetView.TabIndex = 1;
50      this.btnResetView.Text = "Reset View";
51      this.btnResetView.UseVisualStyleBackColor = true;
52      this.btnResetView.Click += new System.EventHandler(this.btnResetView_Click);
53      //
54      // btnAddRandomValue
55      //
56      this.btnAddRandomValue.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
57      this.btnAddRandomValue.Location = new System.Drawing.Point(529, 404);
58      this.btnAddRandomValue.Name = "btnAddRandomValue";
59      this.btnAddRandomValue.Size = new System.Drawing.Size(75, 23);
60      this.btnAddRandomValue.TabIndex = 2;
61      this.btnAddRandomValue.Text = "Add Value";
62      this.btnAddRandomValue.UseVisualStyleBackColor = true;
63      this.btnAddRandomValue.Click += new System.EventHandler(this.btnAddRandomValue_Click);
64      //
65      // LineChartTestForm
66      //
67      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
68      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
69      this.ClientSize = new System.Drawing.Size(697, 453);
70      this.Controls.Add(this.btnAddRandomValue);
71      this.Controls.Add(this.lineChartGroupBox);
72      this.Controls.Add(this.btnResetView);
73      this.Name = "LineChartTestForm";
74      this.Text = "LineChartTestForm";
75      this.ResumeLayout(false);
76
77    }
78
79    #endregion
80
81    private System.Windows.Forms.GroupBox lineChartGroupBox;
82    private System.Windows.Forms.Button btnResetView;
83    private System.Windows.Forms.Button btnAddRandomValue;
84
85  }
86}
Note: See TracBrowser for help on using the repository browser.