Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HL-3.2-MonoMigration/HeuristicLab.Visualization.Test/MainForm.Designer.cs @ 755

Last change on this file since 755 was 636, checked in by mstoeger, 16 years ago

Create test application for HeuristicLab.Visualization (#295)

File size: 2.1 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.SuspendLayout();
29      //
30      // canvasUI
31      //
32      this.canvasUI.Location = new System.Drawing.Point(12, 29);
33      this.canvasUI.Name = "canvasUI";
34      this.canvasUI.Size = new System.Drawing.Size(800, 600);
35      this.canvasUI.TabIndex = 3;
36      this.canvasUI.Text = "canvasUI";
37      //
38      // label2
39      //
40      this.label2.AutoSize = true;
41      this.label2.Location = new System.Drawing.Point(9, 13);
42      this.label2.Name = "label2";
43      this.label2.Size = new System.Drawing.Size(43, 13);
44      this.label2.TabIndex = 4;
45      this.label2.Text = "Canvas";
46      //
47      // Form1
48      //
49      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
50      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
51      this.ClientSize = new System.Drawing.Size(822, 637);
52      this.Controls.Add(this.label2);
53      this.Controls.Add(this.canvasUI);
54      this.Name = "Form1";
55      this.Text = "Form1";
56      this.ResumeLayout(false);
57      this.PerformLayout();
58
59    }
60
61    #endregion
62
63    private HeuristicLab.Visualization.CanvasUI canvasUI;
64    private System.Windows.Forms.Label label2;
65  }
66}
67
Note: See TracBrowser for help on using the repository browser.