Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PluginInfrastructure Refactoring/HeuristicLab.Visualization.Test/3.2/LegendForm.Designer.cs @ 2580

Last change on this file since 2580 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: 1.7 KB
Line 
1using HeuristicLab.Visualization.Drawing;
2
3namespace HeuristicLab.Visualization.Test {
4  partial class LegendForm {
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.SuspendLayout();
30      //
31      // canvasUI
32      //
33      this.canvasUI.Location = new System.Drawing.Point(12, 12);
34      this.canvasUI.Name = "canvasUI";
35      this.canvasUI.Size = new System.Drawing.Size(260, 240);
36      this.canvasUI.TabIndex = 0;
37      this.canvasUI.Text = "canvasUI";
38      //
39      // LegendForm
40      //
41      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
42      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
43      this.ClientSize = new System.Drawing.Size(284, 264);
44      this.Controls.Add(this.canvasUI);
45      this.Name = "LegendForm";
46      this.Text = "LegendForm";
47      this.ResumeLayout(false);
48
49    }
50
51    #endregion
52
53    private CanvasUI canvasUI;
54  }
55}
Note: See TracBrowser for help on using the repository browser.