1 | namespace HeuristicLab.Visualization.Test {
|
---|
2 | partial class MainForm {
|
---|
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.canvasUI = new HeuristicLab.Visualization.CanvasUI();
|
---|
27 | this.label2 = new System.Windows.Forms.Label();
|
---|
28 | this.legendButton = new System.Windows.Forms.Button();
|
---|
29 | this.SuspendLayout();
|
---|
30 | //
|
---|
31 | // canvasUI
|
---|
32 | //
|
---|
33 | this.canvasUI.Location = new System.Drawing.Point(12, 29);
|
---|
34 | this.canvasUI.MouseEventListener = null;
|
---|
35 | this.canvasUI.Name = "canvasUI";
|
---|
36 | this.canvasUI.Size = new System.Drawing.Size(800, 571);
|
---|
37 | this.canvasUI.TabIndex = 3;
|
---|
38 | this.canvasUI.Text = "canvasUI";
|
---|
39 | //
|
---|
40 | // label2
|
---|
41 | //
|
---|
42 | this.label2.AutoSize = true;
|
---|
43 | this.label2.Location = new System.Drawing.Point(9, 13);
|
---|
44 | this.label2.Name = "label2";
|
---|
45 | this.label2.Size = new System.Drawing.Size(43, 13);
|
---|
46 | this.label2.TabIndex = 4;
|
---|
47 | this.label2.Text = "Canvas";
|
---|
48 | //
|
---|
49 | // legendButton
|
---|
50 | //
|
---|
51 | this.legendButton.Location = new System.Drawing.Point(12, 606);
|
---|
52 | this.legendButton.Name = "legendButton";
|
---|
53 | this.legendButton.Size = new System.Drawing.Size(75, 23);
|
---|
54 | this.legendButton.TabIndex = 5;
|
---|
55 | this.legendButton.Text = "Legend";
|
---|
56 | this.legendButton.UseVisualStyleBackColor = true;
|
---|
57 | this.legendButton.Click += new System.EventHandler(this.legendButton_Click);
|
---|
58 | //
|
---|
59 | // MainForm
|
---|
60 | //
|
---|
61 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
62 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
63 | this.ClientSize = new System.Drawing.Size(822, 637);
|
---|
64 | this.Controls.Add(this.legendButton);
|
---|
65 | this.Controls.Add(this.label2);
|
---|
66 | this.Controls.Add(this.canvasUI);
|
---|
67 | this.Name = "MainForm";
|
---|
68 | this.Text = "Form1";
|
---|
69 | this.ResumeLayout(false);
|
---|
70 | this.PerformLayout();
|
---|
71 |
|
---|
72 | }
|
---|
73 |
|
---|
74 | #endregion
|
---|
75 |
|
---|
76 | private HeuristicLab.Visualization.CanvasUI canvasUI;
|
---|
77 | private System.Windows.Forms.Label label2;
|
---|
78 | private System.Windows.Forms.Button legendButton;
|
---|
79 | }
|
---|
80 | }
|
---|
81 |
|
---|