[1964] | 1 | using HeuristicLab.Visualization.Drawing;
|
---|
| 2 |
|
---|
| 3 | namespace HeuristicLab.Visualization.Test {
|
---|
[636] | 4 | partial class MainForm {
|
---|
| 5 | /// <summary>
|
---|
| 6 | /// Required designer variable.
|
---|
| 7 | /// </summary>
|
---|
| 8 | private System.ComponentModel.IContainer components = null;
|
---|
| 9 |
|
---|
| 10 | /// <summary>
|
---|
| 11 | /// Clean up any resources being used.
|
---|
| 12 | /// </summary>
|
---|
| 13 | /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
---|
| 14 | protected override void Dispose(bool disposing) {
|
---|
| 15 | if (disposing && (components != null)) {
|
---|
| 16 | components.Dispose();
|
---|
| 17 | }
|
---|
| 18 | base.Dispose(disposing);
|
---|
| 19 | }
|
---|
| 20 |
|
---|
| 21 | #region Windows Form Designer generated code
|
---|
| 22 |
|
---|
| 23 | /// <summary>
|
---|
| 24 | /// Required method for Designer support - do not modify
|
---|
| 25 | /// the contents of this method with the code editor.
|
---|
| 26 | /// </summary>
|
---|
| 27 | private void InitializeComponent() {
|
---|
[1964] | 28 | this.canvasUI = new CanvasUI();
|
---|
[636] | 29 | this.label2 = new System.Windows.Forms.Label();
|
---|
[865] | 30 | this.legendButton = new System.Windows.Forms.Button();
|
---|
[636] | 31 | this.SuspendLayout();
|
---|
| 32 | //
|
---|
| 33 | // canvasUI
|
---|
| 34 | //
|
---|
| 35 | this.canvasUI.Location = new System.Drawing.Point(12, 29);
|
---|
| 36 | this.canvasUI.Name = "canvasUI";
|
---|
[865] | 37 | this.canvasUI.Size = new System.Drawing.Size(800, 571);
|
---|
[636] | 38 | this.canvasUI.TabIndex = 3;
|
---|
| 39 | this.canvasUI.Text = "canvasUI";
|
---|
| 40 | //
|
---|
| 41 | // label2
|
---|
| 42 | //
|
---|
| 43 | this.label2.AutoSize = true;
|
---|
| 44 | this.label2.Location = new System.Drawing.Point(9, 13);
|
---|
| 45 | this.label2.Name = "label2";
|
---|
| 46 | this.label2.Size = new System.Drawing.Size(43, 13);
|
---|
| 47 | this.label2.TabIndex = 4;
|
---|
| 48 | this.label2.Text = "Canvas";
|
---|
| 49 | //
|
---|
[865] | 50 | // legendButton
|
---|
| 51 | //
|
---|
| 52 | this.legendButton.Location = new System.Drawing.Point(12, 606);
|
---|
| 53 | this.legendButton.Name = "legendButton";
|
---|
| 54 | this.legendButton.Size = new System.Drawing.Size(75, 23);
|
---|
| 55 | this.legendButton.TabIndex = 5;
|
---|
| 56 | this.legendButton.Text = "Legend";
|
---|
| 57 | this.legendButton.UseVisualStyleBackColor = true;
|
---|
| 58 | this.legendButton.Click += new System.EventHandler(this.legendButton_Click);
|
---|
| 59 | //
|
---|
[724] | 60 | // MainForm
|
---|
[636] | 61 | //
|
---|
| 62 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 63 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
| 64 | this.ClientSize = new System.Drawing.Size(822, 637);
|
---|
[865] | 65 | this.Controls.Add(this.legendButton);
|
---|
[636] | 66 | this.Controls.Add(this.label2);
|
---|
| 67 | this.Controls.Add(this.canvasUI);
|
---|
[724] | 68 | this.Name = "MainForm";
|
---|
[636] | 69 | this.Text = "Form1";
|
---|
| 70 | this.ResumeLayout(false);
|
---|
| 71 | this.PerformLayout();
|
---|
| 72 |
|
---|
| 73 | }
|
---|
| 74 |
|
---|
| 75 | #endregion
|
---|
| 76 |
|
---|
[1964] | 77 | private CanvasUI canvasUI;
|
---|
[636] | 78 | private System.Windows.Forms.Label label2;
|
---|
[865] | 79 | private System.Windows.Forms.Button legendButton;
|
---|
[636] | 80 | }
|
---|
| 81 | }
|
---|
| 82 |
|
---|