Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Visualization/3.2/LineChart.Designer.cs @ 1965

Last change on this file since 1965 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: 4.3 KB
Line 
1using System.Windows.Forms;
2using HeuristicLab.Visualization.Drawing;
3
4namespace HeuristicLab.Visualization
5{
6    partial class LineChart
7    {
8        /// <summary>
9        /// Required designer variable.
10        /// </summary>
11        private System.ComponentModel.IContainer components = null;
12
13        /// <summary>
14        /// Clean up any resources being used.
15        /// </summary>
16        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
17        protected override void Dispose(bool disposing)
18        {
19            if (disposing && (components != null))
20            {
21                components.Dispose();
22            }
23            base.Dispose(disposing);
24        }
25
26        #region Component Designer generated code
27
28        /// <summary>
29        /// Required method for Designer support - do not modify
30        /// the contents of this method with the code editor.
31        /// </summary>
32        private void InitializeComponent()
33        {
34          this.components = new System.ComponentModel.Container();
35          this.canvasUI = new CanvasUI();
36          this.contextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
37          this.optionsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
38          this.exportToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
39          this.contextMenu.SuspendLayout();
40          this.SuspendLayout();
41          //
42          // canvasUI
43          //
44          this.canvasUI.Dock = System.Windows.Forms.DockStyle.Fill;
45          this.canvasUI.Location = new System.Drawing.Point(0, 0);
46          this.canvasUI.Name = "canvasUI";
47          this.canvasUI.Size = new System.Drawing.Size(551, 373);
48          this.canvasUI.TabIndex = 0;
49          this.canvasUI.Text = "canvas";
50          this.canvasUI.MouseWheel += new System.Windows.Forms.MouseEventHandler(this.canvasUI1_MouseWheel);
51          this.canvasUI.MouseMove += new System.Windows.Forms.MouseEventHandler(this.canvasUI_MouseMove);
52          this.canvasUI.ContextMenuStripChanged += new System.EventHandler(this.optionsToolStripMenuItem_Click);
53          this.canvasUI.MouseDown += new System.Windows.Forms.MouseEventHandler(this.canvasUI1_MouseDown);
54          this.canvasUI.MouseUp += new System.Windows.Forms.MouseEventHandler(this.canvasUI_MouseUp);
55          this.canvasUI.KeyDown += new System.Windows.Forms.KeyEventHandler(this.canvasUI1_KeyDown);
56          //
57          // contextMenu
58          //
59          this.contextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
60            this.optionsToolStripMenuItem,
61            this.exportToolStripMenuItem});
62          this.contextMenu.Name = "contextMenuStrip1";
63          this.contextMenu.Size = new System.Drawing.Size(153, 70);
64          //
65          // optionsToolStripMenuItem
66          //
67          this.optionsToolStripMenuItem.Name = "optionsToolStripMenuItem";
68          this.optionsToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
69          this.optionsToolStripMenuItem.Text = "Opti&ons...";
70          this.optionsToolStripMenuItem.Click += new System.EventHandler(this.optionsToolStripMenuItem_Click);
71          //
72          // exportToolStripMenuItem
73          //
74          this.exportToolStripMenuItem.Name = "exportToolStripMenuItem";
75          this.exportToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
76          this.exportToolStripMenuItem.Text = "E&xport...";
77          this.exportToolStripMenuItem.Click += new System.EventHandler(this.exportToolStripMenuItem_Click);
78          //
79          // LineChart
80          //
81          this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
82          this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
83          this.Controls.Add(this.canvasUI);
84          this.Name = "LineChart";
85          this.Size = new System.Drawing.Size(551, 373);
86          this.contextMenu.ResumeLayout(false);
87          this.ResumeLayout(false);
88
89        }
90
91        #endregion
92
93        private CanvasUI canvasUI;
94        private ContextMenuStrip contextMenu;
95        private ToolStripMenuItem optionsToolStripMenuItem;
96        private ToolStripMenuItem exportToolStripMenuItem;
97    }
98}
Note: See TracBrowser for help on using the repository browser.