[1964] | 1 | using HeuristicLab.Visualization.Drawing;
|
---|
| 2 |
|
---|
| 3 | namespace HeuristicLab.Visualization.Test {
|
---|
[865] | 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() {
|
---|
[1964] | 28 | this.canvasUI = new CanvasUI();
|
---|
[872] | 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);
|
---|
[865] | 42 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
[872] | 43 | this.ClientSize = new System.Drawing.Size(284, 264);
|
---|
| 44 | this.Controls.Add(this.canvasUI);
|
---|
| 45 | this.Name = "LegendForm";
|
---|
[865] | 46 | this.Text = "LegendForm";
|
---|
[872] | 47 | this.ResumeLayout(false);
|
---|
| 48 |
|
---|
[865] | 49 | }
|
---|
| 50 |
|
---|
| 51 | #endregion
|
---|
[872] | 52 |
|
---|
| 53 | private CanvasUI canvasUI;
|
---|
[865] | 54 | }
|
---|
| 55 | } |
---|