Free cookie consent management tool by TermsFeed Policy Generator

source: branches/CEDMA-Refactoring-Ticket419/HeuristicLab.Visualization.Test/MainForm.Designer.cs @ 1156

Last change on this file since 1156 was 865, checked in by shofstad, 15 years ago

added empty legend form (#407)

File size: 2.9 KB
Line 
1namespace 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      this.canvasUI.MouseDown += new System.Windows.Forms.MouseEventHandler(this.canvasUI_MouseDown);
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      //
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      //
60      // MainForm
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);
65      this.Controls.Add(this.legendButton);
66      this.Controls.Add(this.label2);
67      this.Controls.Add(this.canvasUI);
68      this.Name = "MainForm";
69      this.Text = "Form1";
70      this.ResumeLayout(false);
71      this.PerformLayout();
72
73    }
74
75    #endregion
76
77    private HeuristicLab.Visualization.CanvasUI canvasUI;
78    private System.Windows.Forms.Label label2;
79    private System.Windows.Forms.Button legendButton;
80  }
81}
82
Note: See TracBrowser for help on using the repository browser.