Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 1822 was 1781, checked in by mstoeger, 16 years ago

Data Export (CSV) #588

File size: 4.2 KB
RevLine 
[1058]1using System.Windows.Forms;
2
3namespace HeuristicLab.Visualization
[683]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        {
[1187]33          this.components = new System.ComponentModel.Container();
[1240]34          this.canvasUI = new HeuristicLab.Visualization.CanvasUI();
[1781]35          this.contextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
[1187]36          this.optionsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
[1781]37          this.exportToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
38          this.contextMenu.SuspendLayout();
[754]39          this.SuspendLayout();
40          //
[1240]41          // canvasUI
[754]42          //
[1240]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);
[1249]50          this.canvasUI.MouseMove += new System.Windows.Forms.MouseEventHandler(this.canvasUI_MouseMove);
[1240]51          this.canvasUI.ContextMenuStripChanged += new System.EventHandler(this.optionsToolStripMenuItem_Click);
52          this.canvasUI.MouseDown += new System.Windows.Forms.MouseEventHandler(this.canvasUI1_MouseDown);
[1249]53          this.canvasUI.MouseUp += new System.Windows.Forms.MouseEventHandler(this.canvasUI_MouseUp);
[1240]54          this.canvasUI.KeyDown += new System.Windows.Forms.KeyEventHandler(this.canvasUI1_KeyDown);
[754]55          //
[1781]56          // contextMenu
[1187]57          //
[1781]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);
[1187]63          //
64          // optionsToolStripMenuItem
65          //
66          this.optionsToolStripMenuItem.Name = "optionsToolStripMenuItem";
[1781]67          this.optionsToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
68          this.optionsToolStripMenuItem.Text = "Opti&ons...";
[1187]69          this.optionsToolStripMenuItem.Click += new System.EventHandler(this.optionsToolStripMenuItem_Click);
70          //
[1781]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          //
[754]78          // LineChart
79          //
80          this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
81          this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
[1240]82          this.Controls.Add(this.canvasUI);
[754]83          this.Name = "LineChart";
[1240]84          this.Size = new System.Drawing.Size(551, 373);
[1781]85          this.contextMenu.ResumeLayout(false);
[754]86          this.ResumeLayout(false);
[684]87
[683]88        }
89
90        #endregion
[754]91
[1240]92        private CanvasUI canvasUI;
[1781]93        private ContextMenuStrip contextMenu;
[1187]94        private ToolStripMenuItem optionsToolStripMenuItem;
[1781]95        private ToolStripMenuItem exportToolStripMenuItem;
[683]96    }
97}
Note: See TracBrowser for help on using the repository browser.