Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 1878 was 1781, checked in by mstoeger, 15 years ago

Data Export (CSV) #588

File size: 4.2 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.contextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
36          this.optionsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
37          this.exportToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
38          this.contextMenu.SuspendLayout();
39          this.SuspendLayout();
40          //
41          // canvasUI
42          //
43          this.canvasUI.Dock = System.Windows.Forms.DockStyle.Fill;
44          this.canvasUI.Location = new System.Drawing.Point(0, 0);
45          this.canvasUI.Name = "canvasUI";
46          this.canvasUI.Size = new System.Drawing.Size(551, 373);
47          this.canvasUI.TabIndex = 0;
48          this.canvasUI.Text = "canvas";
49          this.canvasUI.MouseWheel += new System.Windows.Forms.MouseEventHandler(this.canvasUI1_MouseWheel);
50          this.canvasUI.MouseMove += new System.Windows.Forms.MouseEventHandler(this.canvasUI_MouseMove);
51          this.canvasUI.ContextMenuStripChanged += new System.EventHandler(this.optionsToolStripMenuItem_Click);
52          this.canvasUI.MouseDown += new System.Windows.Forms.MouseEventHandler(this.canvasUI1_MouseDown);
53          this.canvasUI.MouseUp += new System.Windows.Forms.MouseEventHandler(this.canvasUI_MouseUp);
54          this.canvasUI.KeyDown += new System.Windows.Forms.KeyEventHandler(this.canvasUI1_KeyDown);
55          //
56          // contextMenu
57          //
58          this.contextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
59            this.optionsToolStripMenuItem,
60            this.exportToolStripMenuItem});
61          this.contextMenu.Name = "contextMenuStrip1";
62          this.contextMenu.Size = new System.Drawing.Size(153, 70);
63          //
64          // optionsToolStripMenuItem
65          //
66          this.optionsToolStripMenuItem.Name = "optionsToolStripMenuItem";
67          this.optionsToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
68          this.optionsToolStripMenuItem.Text = "Opti&ons...";
69          this.optionsToolStripMenuItem.Click += new System.EventHandler(this.optionsToolStripMenuItem_Click);
70          //
71          // exportToolStripMenuItem
72          //
73          this.exportToolStripMenuItem.Name = "exportToolStripMenuItem";
74          this.exportToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
75          this.exportToolStripMenuItem.Text = "E&xport...";
76          this.exportToolStripMenuItem.Click += new System.EventHandler(this.exportToolStripMenuItem_Click);
77          //
78          // LineChart
79          //
80          this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
81          this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
82          this.Controls.Add(this.canvasUI);
83          this.Name = "LineChart";
84          this.Size = new System.Drawing.Size(551, 373);
85          this.contextMenu.ResumeLayout(false);
86          this.ResumeLayout(false);
87
88        }
89
90        #endregion
91
92        private CanvasUI canvasUI;
93        private ContextMenuStrip contextMenu;
94        private ToolStripMenuItem optionsToolStripMenuItem;
95        private ToolStripMenuItem exportToolStripMenuItem;
96    }
97}
Note: See TracBrowser for help on using the repository browser.