Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 1978 was 1968, checked in by dwagner, 15 years ago

Bug fix: Deregistering of TooltipListener in Dispose(#581)

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            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          this.canvasUI.KeyDown += new System.Windows.Forms.KeyEventHandler(this.canvasUI1_KeyDown);
58          //
59          // contextMenu
60          //
61          this.contextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
62            this.optionsToolStripMenuItem,
63            this.exportToolStripMenuItem});
64          this.contextMenu.Name = "contextMenuStrip1";
65          this.contextMenu.Size = new System.Drawing.Size(153, 70);
66          //
67          // optionsToolStripMenuItem
68          //
69          this.optionsToolStripMenuItem.Name = "optionsToolStripMenuItem";
70          this.optionsToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
71          this.optionsToolStripMenuItem.Text = "Opti&ons...";
72          this.optionsToolStripMenuItem.Click += new System.EventHandler(this.optionsToolStripMenuItem_Click);
73          //
74          // exportToolStripMenuItem
75          //
76          this.exportToolStripMenuItem.Name = "exportToolStripMenuItem";
77          this.exportToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
78          this.exportToolStripMenuItem.Text = "E&xport...";
79          this.exportToolStripMenuItem.Click += new System.EventHandler(this.exportToolStripMenuItem_Click);
80          //
81          // LineChart
82          //
83          this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
84          this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
85          this.Controls.Add(this.canvasUI);
86          this.Name = "LineChart";
87          this.Size = new System.Drawing.Size(551, 373);
88          this.contextMenu.ResumeLayout(false);
89          this.ResumeLayout(false);
90
91        }
92
93        #endregion
94
95        private CanvasUI canvasUI;
96        private ContextMenuStrip contextMenu;
97        private ToolStripMenuItem optionsToolStripMenuItem;
98        private ToolStripMenuItem exportToolStripMenuItem;
99    }
100}
Note: See TracBrowser for help on using the repository browser.