Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 1191 was 1187, checked in by dwagner, 15 years ago

Added OptionsDialog, min and max lines and fixed bug in auto-adjust. (#478) (#345)

File size: 3.5 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.canvas = 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          // canvas
41          //
42          this.canvas.Dock = System.Windows.Forms.DockStyle.Fill;
43          this.canvas.Location = new System.Drawing.Point(0, 0);
44          this.canvas.MouseEventListener = null;
45          this.canvas.Name = "canvas";
46          this.canvas.Size = new System.Drawing.Size(552, 390);
47          this.canvas.TabIndex = 0;
48          this.canvas.Text = "canvas";
49          this.canvas.MouseWheel += new System.Windows.Forms.MouseEventHandler(this.canvasUI1_MouseWheel);
50          this.canvas.ContextMenuStripChanged += new System.EventHandler(this.optionsToolStripMenuItem_Click);
51          this.canvas.MouseDown += new System.Windows.Forms.MouseEventHandler(this.canvasUI1_MouseDown);
52          this.canvas.KeyDown += new System.Windows.Forms.KeyEventHandler(this.canvasUI1_KeyDown);
53          //
54          // contextMenuStrip1
55          //
56          this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
57            this.optionsToolStripMenuItem});
58          this.contextMenuStrip1.Name = "contextMenuStrip1";
59          this.contextMenuStrip1.Size = new System.Drawing.Size(112, 26);
60
61          //
62          // optionsToolStripMenuItem
63          //
64          this.optionsToolStripMenuItem.Name = "optionsToolStripMenuItem";
65          this.optionsToolStripMenuItem.Size = new System.Drawing.Size(152, 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.canvas);
74          this.Name = "LineChart";
75          this.Size = new System.Drawing.Size(552, 390);
76          this.contextMenuStrip1.ResumeLayout(false);
77          this.ResumeLayout(false);
78
79        }
80
81        #endregion
82
83        private CanvasUI canvas;
84        private ContextMenuStrip contextMenuStrip1;
85        private ToolStripMenuItem optionsToolStripMenuItem;
86    }
87}
Note: See TracBrowser for help on using the repository browser.