Free cookie consent management tool by TermsFeed Policy Generator

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

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

Removed an unused EventListener (#664)

File size: 4.2 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            this.toolTipListener.ShowToolTip-= ShowToolTip;
20            if (disposing && (components != null))
21            {
22                components.Dispose();
23            }
24            base.Dispose(disposing);
25         
26        }
27
28        #region Component Designer generated code
29
30        /// <summary>
31        /// Required method for Designer support - do not modify
32        /// the contents of this method with the code editor.
33        /// </summary>
34        private void InitializeComponent()
35        {
36          this.components = new System.ComponentModel.Container();
37          this.canvasUI = new CanvasUI();
38          this.contextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
39          this.optionsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
40          this.exportToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
41          this.contextMenu.SuspendLayout();
42          this.SuspendLayout();
43          //
44          // canvasUI
45          //
46          this.canvasUI.Dock = System.Windows.Forms.DockStyle.Fill;
47          this.canvasUI.Location = new System.Drawing.Point(0, 0);
48          this.canvasUI.Name = "canvasUI";
49          this.canvasUI.Size = new System.Drawing.Size(551, 373);
50          this.canvasUI.TabIndex = 0;
51          this.canvasUI.Text = "canvas";
52          this.canvasUI.MouseWheel += new System.Windows.Forms.MouseEventHandler(this.canvasUI1_MouseWheel);
53          this.canvasUI.MouseMove += new System.Windows.Forms.MouseEventHandler(this.canvasUI_MouseMove);
54          this.canvasUI.ContextMenuStripChanged += new System.EventHandler(this.optionsToolStripMenuItem_Click);
55          this.canvasUI.MouseDown += new System.Windows.Forms.MouseEventHandler(this.canvasUI1_MouseDown);
56          this.canvasUI.MouseUp += new System.Windows.Forms.MouseEventHandler(this.canvasUI_MouseUp);
57          //
58          // contextMenu
59          //
60          this.contextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
61            this.optionsToolStripMenuItem,
62            this.exportToolStripMenuItem});
63          this.contextMenu.Name = "contextMenuStrip1";
64          this.contextMenu.Size = new System.Drawing.Size(153, 70);
65          //
66          // optionsToolStripMenuItem
67          //
68          this.optionsToolStripMenuItem.Name = "optionsToolStripMenuItem";
69          this.optionsToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
70          this.optionsToolStripMenuItem.Text = "Opti&ons...";
71          this.optionsToolStripMenuItem.Click += new System.EventHandler(this.optionsToolStripMenuItem_Click);
72          //
73          // exportToolStripMenuItem
74          //
75          this.exportToolStripMenuItem.Name = "exportToolStripMenuItem";
76          this.exportToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
77          this.exportToolStripMenuItem.Text = "E&xport...";
78          this.exportToolStripMenuItem.Click += new System.EventHandler(this.exportToolStripMenuItem_Click);
79          //
80          // LineChart
81          //
82          this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
83          this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
84          this.Controls.Add(this.canvasUI);
85          this.Name = "LineChart";
86          this.Size = new System.Drawing.Size(551, 373);
87          this.contextMenu.ResumeLayout(false);
88          this.ResumeLayout(false);
89
90        }
91
92        #endregion
93
94        private CanvasUI canvasUI;
95        private ContextMenuStrip contextMenu;
96        private ToolStripMenuItem optionsToolStripMenuItem;
97        private ToolStripMenuItem exportToolStripMenuItem;
98    }
99}
Note: See TracBrowser for help on using the repository browser.