1 | namespace 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.SuspendLayout();
|
---|
29 | //
|
---|
30 | // lineChartGroupBox
|
---|
31 | //
|
---|
32 | this.lineChartGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
33 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
34 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
35 | this.lineChartGroupBox.Location = new System.Drawing.Point(12, 12);
|
---|
36 | this.lineChartGroupBox.Name = "lineChartGroupBox";
|
---|
37 | this.lineChartGroupBox.Size = new System.Drawing.Size(607, 318);
|
---|
38 | this.lineChartGroupBox.TabIndex = 0;
|
---|
39 | this.lineChartGroupBox.TabStop = false;
|
---|
40 | this.lineChartGroupBox.Text = "Line Chart";
|
---|
41 | //
|
---|
42 | // btnResetView
|
---|
43 | //
|
---|
44 | this.btnResetView.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
---|
45 | this.btnResetView.Location = new System.Drawing.Point(544, 346);
|
---|
46 | this.btnResetView.Name = "btnResetView";
|
---|
47 | this.btnResetView.Size = new System.Drawing.Size(75, 23);
|
---|
48 | this.btnResetView.TabIndex = 1;
|
---|
49 | this.btnResetView.Text = "Reset View";
|
---|
50 | this.btnResetView.UseVisualStyleBackColor = true;
|
---|
51 | this.btnResetView.Click += new System.EventHandler(this.btnResetView_Click);
|
---|
52 | //
|
---|
53 | // LineChartTestForm
|
---|
54 | //
|
---|
55 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
56 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
57 | this.ClientSize = new System.Drawing.Size(631, 395);
|
---|
58 | this.Controls.Add(this.lineChartGroupBox);
|
---|
59 | this.Controls.Add(this.btnResetView);
|
---|
60 | this.Name = "LineChartTestForm";
|
---|
61 | this.Text = "LineChartTestForm";
|
---|
62 | this.ResumeLayout(false);
|
---|
63 |
|
---|
64 | }
|
---|
65 |
|
---|
66 | #endregion
|
---|
67 |
|
---|
68 | private System.Windows.Forms.GroupBox lineChartGroupBox;
|
---|
69 | private System.Windows.Forms.Button btnResetView;
|
---|
70 |
|
---|
71 | }
|
---|
72 | } |
---|