Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Visualization/HeuristicLab.Visualization/3.3/ChartControl.Designer.cs @ 4776

Last change on this file since 4776 was 4776, checked in by abeham, 13 years ago

#1265

  • Renamed HeuristicLab.Drawing to HeuristicLab.Visualization
File size: 10.4 KB
RevLine 
[4773]1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
[4776]22namespace HeuristicLab.Visualization {
[4773]23  partial class ChartControl {
24    /// <summary>
25    /// Required designer variable.
26    /// </summary>
27    private System.ComponentModel.IContainer components = null;
28
29    /// <summary>
30    /// Clean up any resources being used.
31    /// </summary>
32    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
33    protected override void Dispose(bool disposing) {
34      if (disposing && (components != null)) {
35        components.Dispose();
36      }
37      base.Dispose(disposing);
38    }
39
40    #region Component Designer generated code
41
42    /// <summary>
43    /// Required method for Designer support - do not modify
44    /// the contents of this method with the code editor.
45    /// </summary>
46    private void InitializeComponent() {
47      this.components = new System.ComponentModel.Container();
48      this.pictureBox = new System.Windows.Forms.PictureBox();
49      this.pictureBoxContextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
50      this.moveToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
51      this.zoomToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
52      this.selectToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
53      this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator();
54      this.oneLayerUpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
55      this.oneLayerDownToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
56      this.intoForegroundToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
57      this.intoBackgroundToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
58      this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripSeparator();
59      this.propertiesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
60      this.toolTip = new System.Windows.Forms.ToolTip(this.components);
61      ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).BeginInit();
62      this.pictureBoxContextMenuStrip.SuspendLayout();
63      this.SuspendLayout();
64      //
65      // pictureBox
66      //
67      this.pictureBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
68                  | System.Windows.Forms.AnchorStyles.Left)
69                  | System.Windows.Forms.AnchorStyles.Right)));
70      this.pictureBox.BackColor = System.Drawing.Color.White;
71      this.pictureBox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
72      this.pictureBox.ContextMenuStrip = this.pictureBoxContextMenuStrip;
73      this.pictureBox.Location = new System.Drawing.Point(0, 0);
74      this.pictureBox.Name = "pictureBox";
75      this.pictureBox.Size = new System.Drawing.Size(266, 236);
76      this.pictureBox.TabIndex = 0;
77      this.pictureBox.TabStop = false;
78      this.pictureBox.VisibleChanged += new System.EventHandler(this.pictureBox_VisibleChanged);
79      this.pictureBox.MouseDown += new System.Windows.Forms.MouseEventHandler(this.pictureBox_MouseDown);
80      this.pictureBox.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pictureBox_MouseMove);
81      this.pictureBox.MouseUp += new System.Windows.Forms.MouseEventHandler(this.pictureBox_MouseUp);
82      this.pictureBox.SizeChanged += new System.EventHandler(this.pictureBox_SizeChanged);
83      //
84      // pictureBoxContextMenuStrip
85      //
86      this.pictureBoxContextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
87            this.moveToolStripMenuItem,
88            this.zoomToolStripMenuItem,
89            this.selectToolStripMenuItem,
90            this.toolStripMenuItem1,
91            this.oneLayerUpToolStripMenuItem,
92            this.oneLayerDownToolStripMenuItem,
93            this.intoForegroundToolStripMenuItem,
94            this.intoBackgroundToolStripMenuItem,
95            this.toolStripMenuItem2,
96            this.propertiesToolStripMenuItem});
97      this.pictureBoxContextMenuStrip.Name = "pictureBoxContextMenuStrip";
98      this.pictureBoxContextMenuStrip.Size = new System.Drawing.Size(165, 192);
99      //
100      // moveToolStripMenuItem
101      //
102      this.moveToolStripMenuItem.Checked = true;
103      this.moveToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
104      this.moveToolStripMenuItem.Name = "moveToolStripMenuItem";
105      this.moveToolStripMenuItem.Size = new System.Drawing.Size(164, 22);
106      this.moveToolStripMenuItem.Text = "&Move";
107      this.moveToolStripMenuItem.Click += new System.EventHandler(this.moveToolStripMenuItem_Click);
108      //
109      // zoomToolStripMenuItem
110      //
111      this.zoomToolStripMenuItem.Name = "zoomToolStripMenuItem";
112      this.zoomToolStripMenuItem.Size = new System.Drawing.Size(164, 22);
113      this.zoomToolStripMenuItem.Text = "&Zoom";
114      this.zoomToolStripMenuItem.Click += new System.EventHandler(this.zoomToolStripMenuItem_Click);
115      //
116      // selectToolStripMenuItem
117      //
118      this.selectToolStripMenuItem.Name = "selectToolStripMenuItem";
119      this.selectToolStripMenuItem.Size = new System.Drawing.Size(164, 22);
120      this.selectToolStripMenuItem.Text = "&Select";
121      this.selectToolStripMenuItem.Click += new System.EventHandler(this.selectToolStripMenuItem_Click);
122      //
123      // toolStripMenuItem1
124      //
125      this.toolStripMenuItem1.Name = "toolStripMenuItem1";
126      this.toolStripMenuItem1.Size = new System.Drawing.Size(161, 6);
127      //
128      // oneLayerUpToolStripMenuItem
129      //
130      this.oneLayerUpToolStripMenuItem.Enabled = false;
131      this.oneLayerUpToolStripMenuItem.Name = "oneLayerUpToolStripMenuItem";
132      this.oneLayerUpToolStripMenuItem.Size = new System.Drawing.Size(164, 22);
133      this.oneLayerUpToolStripMenuItem.Text = "One Layer &Up";
134      this.oneLayerUpToolStripMenuItem.Click += new System.EventHandler(this.oneLayerUpToolStripMenuItem_Click);
135      //
136      // oneLayerDownToolStripMenuItem
137      //
138      this.oneLayerDownToolStripMenuItem.Enabled = false;
139      this.oneLayerDownToolStripMenuItem.Name = "oneLayerDownToolStripMenuItem";
140      this.oneLayerDownToolStripMenuItem.Size = new System.Drawing.Size(164, 22);
141      this.oneLayerDownToolStripMenuItem.Text = "OneLayer &Down";
142      this.oneLayerDownToolStripMenuItem.Click += new System.EventHandler(this.oneLayerDownToolStripMenuItem_Click);
143      //
144      // intoForegroundToolStripMenuItem
145      //
146      this.intoForegroundToolStripMenuItem.Enabled = false;
147      this.intoForegroundToolStripMenuItem.Name = "intoForegroundToolStripMenuItem";
148      this.intoForegroundToolStripMenuItem.Size = new System.Drawing.Size(164, 22);
149      this.intoForegroundToolStripMenuItem.Text = "Into &Foreground";
150      this.intoForegroundToolStripMenuItem.Click += new System.EventHandler(this.intoForegroundToolStripMenuItem_Click);
151      //
152      // intoBackgroundToolStripMenuItem
153      //
154      this.intoBackgroundToolStripMenuItem.Enabled = false;
155      this.intoBackgroundToolStripMenuItem.Name = "intoBackgroundToolStripMenuItem";
156      this.intoBackgroundToolStripMenuItem.Size = new System.Drawing.Size(164, 22);
157      this.intoBackgroundToolStripMenuItem.Text = "Into &Background";
158      this.intoBackgroundToolStripMenuItem.Click += new System.EventHandler(this.intoBackgroundToolStripMenuItem_Click);
159      //
160      // toolStripMenuItem2
161      //
162      this.toolStripMenuItem2.Name = "toolStripMenuItem2";
163      this.toolStripMenuItem2.Size = new System.Drawing.Size(161, 6);
164      //
165      // propertiesToolStripMenuItem
166      //
167      this.propertiesToolStripMenuItem.Enabled = false;
168      this.propertiesToolStripMenuItem.Name = "propertiesToolStripMenuItem";
169      this.propertiesToolStripMenuItem.Size = new System.Drawing.Size(164, 22);
170      this.propertiesToolStripMenuItem.Text = "&Properties";
171      this.propertiesToolStripMenuItem.Click += new System.EventHandler(this.propertiesToolStripMenuItem_Click);
172      //
173      // ChartControl
174      //
175      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
176      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
177      this.BackColor = System.Drawing.SystemColors.Control;
178      this.Controls.Add(this.pictureBox);
179      this.Name = "ChartControl";
180      this.Size = new System.Drawing.Size(266, 236);
181      this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ChartControl_KeyDown);
182      ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).EndInit();
183      this.pictureBoxContextMenuStrip.ResumeLayout(false);
184      this.ResumeLayout(false);
185
186    }
187
188    #endregion
189
190    protected System.Windows.Forms.PictureBox pictureBox;
191    protected System.Windows.Forms.ToolTip toolTip;
192    protected System.Windows.Forms.ContextMenuStrip pictureBoxContextMenuStrip;
193    protected System.Windows.Forms.ToolStripMenuItem moveToolStripMenuItem;
194    protected System.Windows.Forms.ToolStripMenuItem zoomToolStripMenuItem;
195    protected System.Windows.Forms.ToolStripMenuItem selectToolStripMenuItem;
196    protected System.Windows.Forms.ToolStripSeparator toolStripMenuItem1;
197    protected System.Windows.Forms.ToolStripMenuItem propertiesToolStripMenuItem;
198    protected System.Windows.Forms.ToolStripMenuItem oneLayerUpToolStripMenuItem;
199    protected System.Windows.Forms.ToolStripMenuItem oneLayerDownToolStripMenuItem;
200    protected System.Windows.Forms.ToolStripMenuItem intoForegroundToolStripMenuItem;
201    protected System.Windows.Forms.ToolStripMenuItem intoBackgroundToolStripMenuItem;
202    protected System.Windows.Forms.ToolStripSeparator toolStripMenuItem2;
203
204  }
205}
Note: See TracBrowser for help on using the repository browser.