Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Visualization.Test/MainForm.Designer.cs @ 1249

Last change on this file since 1249 was 1249, checked in by bspisic, 15 years ago

reimplemented panning and zooming (#424)

File size: 2.7 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.Name = "canvasUI";
35      this.canvasUI.Size = new System.Drawing.Size(800, 571);
36      this.canvasUI.TabIndex = 3;
37      this.canvasUI.Text = "canvasUI";
38      //
39      // label2
40      //
41      this.label2.AutoSize = true;
42      this.label2.Location = new System.Drawing.Point(9, 13);
43      this.label2.Name = "label2";
44      this.label2.Size = new System.Drawing.Size(43, 13);
45      this.label2.TabIndex = 4;
46      this.label2.Text = "Canvas";
47      //
48      // legendButton
49      //
50      this.legendButton.Location = new System.Drawing.Point(12, 606);
51      this.legendButton.Name = "legendButton";
52      this.legendButton.Size = new System.Drawing.Size(75, 23);
53      this.legendButton.TabIndex = 5;
54      this.legendButton.Text = "Legend";
55      this.legendButton.UseVisualStyleBackColor = true;
56      this.legendButton.Click += new System.EventHandler(this.legendButton_Click);
57      //
58      // MainForm
59      //
60      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
61      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
62      this.ClientSize = new System.Drawing.Size(822, 637);
63      this.Controls.Add(this.legendButton);
64      this.Controls.Add(this.label2);
65      this.Controls.Add(this.canvasUI);
66      this.Name = "MainForm";
67      this.Text = "Form1";
68      this.ResumeLayout(false);
69      this.PerformLayout();
70
71    }
72
73    #endregion
74
75    private HeuristicLab.Visualization.CanvasUI canvasUI;
76    private System.Windows.Forms.Label label2;
77    private System.Windows.Forms.Button legendButton;
78  }
79}
80
Note: See TracBrowser for help on using the repository browser.