Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 1665 was 1530, checked in by gkronber, 15 years ago

Moved source files of plugins Hive ... Visualization.Test into version-specific sub-folders. #576

File size: 3.7 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();
[1187]35          this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
36          this.optionsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
37          this.contextMenuStrip1.SuspendLayout();
[754]38          this.SuspendLayout();
39          //
[1240]40          // canvasUI
[754]41          //
[1240]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);
[1249]49          this.canvasUI.MouseMove += new System.Windows.Forms.MouseEventHandler(this.canvasUI_MouseMove);
[1240]50          this.canvasUI.ContextMenuStripChanged += new System.EventHandler(this.optionsToolStripMenuItem_Click);
51          this.canvasUI.MouseDown += new System.Windows.Forms.MouseEventHandler(this.canvasUI1_MouseDown);
[1249]52          this.canvasUI.MouseUp += new System.Windows.Forms.MouseEventHandler(this.canvasUI_MouseUp);
[1240]53          this.canvasUI.KeyDown += new System.Windows.Forms.KeyEventHandler(this.canvasUI1_KeyDown);
[754]54          //
[1187]55          // contextMenuStrip1
56          //
57          this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
58            this.optionsToolStripMenuItem});
59          this.contextMenuStrip1.Name = "contextMenuStrip1";
[1240]60          this.contextMenuStrip1.Size = new System.Drawing.Size(123, 26);
[1187]61          //
62          // optionsToolStripMenuItem
63          //
64          this.optionsToolStripMenuItem.Name = "optionsToolStripMenuItem";
[1240]65          this.optionsToolStripMenuItem.Size = new System.Drawing.Size(122, 22);
[1187]66          this.optionsToolStripMenuItem.Text = "Options";
67          this.optionsToolStripMenuItem.Click += new System.EventHandler(this.optionsToolStripMenuItem_Click);
68          //
[754]69          // LineChart
70          //
71          this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
72          this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
[1240]73          this.Controls.Add(this.canvasUI);
[754]74          this.Name = "LineChart";
[1240]75          this.Size = new System.Drawing.Size(551, 373);
[1187]76          this.contextMenuStrip1.ResumeLayout(false);
[754]77          this.ResumeLayout(false);
[684]78
[683]79        }
80
81        #endregion
[754]82
[1240]83        private CanvasUI canvasUI;
[1187]84        private ContextMenuStrip contextMenuStrip1;
85        private ToolStripMenuItem optionsToolStripMenuItem;
[683]86    }
87}
Note: See TracBrowser for help on using the repository browser.