Free cookie consent management tool by TermsFeed Policy Generator

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

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

reimplemented panning and zooming (#424)

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