[861] | 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();
|
---|
[985] | 27 | this.btnResetView = new System.Windows.Forms.Button();
|
---|
[1038] | 28 | this.btnAddRandomValue = new System.Windows.Forms.Button();
|
---|
[861] | 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";
|
---|
[1038] | 38 | this.lineChartGroupBox.Size = new System.Drawing.Size(673, 376);
|
---|
[861] | 39 | this.lineChartGroupBox.TabIndex = 0;
|
---|
| 40 | this.lineChartGroupBox.TabStop = false;
|
---|
| 41 | this.lineChartGroupBox.Text = "Line Chart";
|
---|
| 42 | //
|
---|
[985] | 43 | // btnResetView
|
---|
| 44 | //
|
---|
[986] | 45 | this.btnResetView.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[1038] | 46 | this.btnResetView.Location = new System.Drawing.Point(610, 404);
|
---|
[985] | 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 | //
|
---|
[1038] | 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 | //
|
---|
[861] | 65 | // LineChartTestForm
|
---|
| 66 | //
|
---|
| 67 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 68 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
[1038] | 69 | this.ClientSize = new System.Drawing.Size(697, 453);
|
---|
| 70 | this.Controls.Add(this.btnAddRandomValue);
|
---|
[986] | 71 | this.Controls.Add(this.lineChartGroupBox);
|
---|
[985] | 72 | this.Controls.Add(this.btnResetView);
|
---|
[861] | 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;
|
---|
[985] | 82 | private System.Windows.Forms.Button btnResetView;
|
---|
[1038] | 83 | private System.Windows.Forms.Button btnAddRandomValue;
|
---|
[861] | 84 |
|
---|
| 85 | }
|
---|
| 86 | } |
---|