Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PluginInfrastructure Refactoring/HeuristicLab.Visualization.Test/3.2/MainForm.Designer.cs @ 2587

Last change on this file since 2587 was 1964, checked in by mstoeger, 15 years ago

moved the canvas and the basic types of shapes to their own namespace. #498

File size: 2.7 KB
Line 
1using HeuristicLab.Visualization.Drawing;
2
3namespace HeuristicLab.Visualization.Test {
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() {
28      this.canvasUI = new CanvasUI();
29      this.label2 = new System.Windows.Forms.Label();
30      this.legendButton = new System.Windows.Forms.Button();
31      this.SuspendLayout();
32      //
33      // canvasUI
34      //
35      this.canvasUI.Location = new System.Drawing.Point(12, 29);
36      this.canvasUI.Name = "canvasUI";
37      this.canvasUI.Size = new System.Drawing.Size(800, 571);
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      //
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 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.