Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 13076 was 13076, checked in by jkarder, 8 years ago

#1265: implemented new chart mode concept

File size: 11.4 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2015 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
22namespace HeuristicLab.Visualization {
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.oneLayerUpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
51      this.oneLayerDownToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
52      this.intoForegroundToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
53      this.intoBackgroundToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
54      this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator();
55      this.propertiesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
56      this.toolTip = new System.Windows.Forms.ToolTip(this.components);
57      this.buttonPanel = new System.Windows.Forms.FlowLayoutPanel();
58      this.saveFileDialog = new System.Windows.Forms.SaveFileDialog();
59      this.saveImageToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
60      this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripSeparator();
61      ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).BeginInit();
62      this.pictureBoxContextMenuStrip.SuspendLayout();
63      this.buttonPanel.SuspendLayout();
64      this.SuspendLayout();
65      //
66      // pictureBox
67      //
68      this.pictureBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
69            | System.Windows.Forms.AnchorStyles.Left)
70            | System.Windows.Forms.AnchorStyles.Right)));
71      this.pictureBox.BackColor = System.Drawing.Color.White;
72      this.pictureBox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
73      this.pictureBox.ContextMenuStrip = this.pictureBoxContextMenuStrip;
74      this.pictureBox.Location = new System.Drawing.Point(35, 0);
75      this.pictureBox.Name = "pictureBox";
76      this.pictureBox.Size = new System.Drawing.Size(685, 500);
77      this.pictureBox.TabIndex = 0;
78      this.pictureBox.TabStop = false;
79      this.pictureBox.KeyUp += new System.Windows.Forms.KeyEventHandler(this.OnKeyUp);
80      this.pictureBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.OnKeyDown);
81      this.pictureBox.SizeChanged += new System.EventHandler(this.PictureBoxOnSizeChanged);
82      this.pictureBox.VisibleChanged += new System.EventHandler(this.PictureBoxOnVisibleChanged);
83      this.pictureBox.Click += new System.EventHandler(this.PictureBoxOnClick);
84      this.pictureBox.MouseClick += new System.Windows.Forms.MouseEventHandler(this.PictureBoxOnMouseClick);
85      this.pictureBox.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.PictureBoxOnMouseDoubleClick);
86      this.pictureBox.MouseDown += new System.Windows.Forms.MouseEventHandler(this.PictureBoxOnMouseDown);
87      this.pictureBox.MouseEnter += new System.EventHandler(this.PictureBoxOnMouseEnter);
88      this.pictureBox.MouseLeave += new System.EventHandler(this.PictureBoxOnMouseLeave);
89      this.pictureBox.MouseMove += new System.Windows.Forms.MouseEventHandler(this.PictureBoxOnMouseMove);
90      this.pictureBox.MouseUp += new System.Windows.Forms.MouseEventHandler(this.PictureBoxOnMouseUp);
91      this.pictureBox.MouseWheel += new System.Windows.Forms.MouseEventHandler(this.PictureBoxOnMouseWheel);
92      //
93      // pictureBoxContextMenuStrip
94      //
95      this.pictureBoxContextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
96            this.oneLayerUpToolStripMenuItem,
97            this.oneLayerDownToolStripMenuItem,
98            this.intoForegroundToolStripMenuItem,
99            this.intoBackgroundToolStripMenuItem,
100            this.toolStripMenuItem1,
101            this.propertiesToolStripMenuItem,
102            this.toolStripMenuItem2,
103            this.saveImageToolStripMenuItem});
104      this.pictureBoxContextMenuStrip.Name = "pictureBoxContextMenuStrip";
105      this.pictureBoxContextMenuStrip.Size = new System.Drawing.Size(163, 170);
106      this.pictureBoxContextMenuStrip.Opening += new System.ComponentModel.CancelEventHandler(this.PictureBoxContextMenuStripOnOpening);
107      //
108      // oneLayerUpToolStripMenuItem
109      //
110      this.oneLayerUpToolStripMenuItem.Enabled = false;
111      this.oneLayerUpToolStripMenuItem.Name = "oneLayerUpToolStripMenuItem";
112      this.oneLayerUpToolStripMenuItem.Size = new System.Drawing.Size(162, 22);
113      this.oneLayerUpToolStripMenuItem.Text = "One Layer &Up";
114      this.oneLayerUpToolStripMenuItem.Click += new System.EventHandler(this.oneLayerUpToolStripMenuItem_Click);
115      //
116      // oneLayerDownToolStripMenuItem
117      //
118      this.oneLayerDownToolStripMenuItem.Enabled = false;
119      this.oneLayerDownToolStripMenuItem.Name = "oneLayerDownToolStripMenuItem";
120      this.oneLayerDownToolStripMenuItem.Size = new System.Drawing.Size(162, 22);
121      this.oneLayerDownToolStripMenuItem.Text = "OneLayer &Down";
122      this.oneLayerDownToolStripMenuItem.Click += new System.EventHandler(this.oneLayerDownToolStripMenuItem_Click);
123      //
124      // intoForegroundToolStripMenuItem
125      //
126      this.intoForegroundToolStripMenuItem.Enabled = false;
127      this.intoForegroundToolStripMenuItem.Name = "intoForegroundToolStripMenuItem";
128      this.intoForegroundToolStripMenuItem.Size = new System.Drawing.Size(162, 22);
129      this.intoForegroundToolStripMenuItem.Text = "Into &Foreground";
130      this.intoForegroundToolStripMenuItem.Click += new System.EventHandler(this.intoForegroundToolStripMenuItem_Click);
131      //
132      // intoBackgroundToolStripMenuItem
133      //
134      this.intoBackgroundToolStripMenuItem.Enabled = false;
135      this.intoBackgroundToolStripMenuItem.Name = "intoBackgroundToolStripMenuItem";
136      this.intoBackgroundToolStripMenuItem.Size = new System.Drawing.Size(162, 22);
137      this.intoBackgroundToolStripMenuItem.Text = "Into &Background";
138      this.intoBackgroundToolStripMenuItem.Click += new System.EventHandler(this.intoBackgroundToolStripMenuItem_Click);
139      //
140      // toolStripMenuItem1
141      //
142      this.toolStripMenuItem1.Name = "toolStripMenuItem1";
143      this.toolStripMenuItem1.Size = new System.Drawing.Size(159, 6);
144      //
145      // propertiesToolStripMenuItem
146      //
147      this.propertiesToolStripMenuItem.Enabled = false;
148      this.propertiesToolStripMenuItem.Name = "propertiesToolStripMenuItem";
149      this.propertiesToolStripMenuItem.Size = new System.Drawing.Size(162, 22);
150      this.propertiesToolStripMenuItem.Text = "&Properties";
151      this.propertiesToolStripMenuItem.Click += new System.EventHandler(this.propertiesToolStripMenuItem_Click);
152      //
153      // toolStripMenuItem2
154      //
155      this.toolStripMenuItem2.Name = "toolStripMenuItem2";
156      this.toolStripMenuItem2.Size = new System.Drawing.Size(159, 6);
157      //
158      // saveImageToolStripMenuItem
159      //
160      this.saveImageToolStripMenuItem.Name = "saveImageToolStripMenuItem";
161      this.saveImageToolStripMenuItem.Size = new System.Drawing.Size(162, 22);
162      this.saveImageToolStripMenuItem.Text = "&Save Image";
163      this.saveImageToolStripMenuItem.Click += new System.EventHandler(this.saveImageToolStripMenuItem_Click);
164      //
165      // saveFileDialog
166      //
167      this.saveFileDialog.DefaultExt = "emf";
168      this.saveFileDialog.FileName = "*.emf";
169      this.saveFileDialog.Filter = "Bitmap (*.bmp)|*.bmp|JPEG (*.jpg)|*.jpg|EMF (*.emf)|*.emf|PNG (*.png)|*.png|GIF (" +
170    "*.gif)|*.gif|TIFF (*.tif)|*.tif";
171      this.buttonPanel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
172            | System.Windows.Forms.AnchorStyles.Left)));
173      this.buttonPanel.Location = new System.Drawing.Point(0, 0);
174      this.buttonPanel.Name = "buttonPanel";
175      this.buttonPanel.Size = new System.Drawing.Size(32, 500);
176      this.buttonPanel.TabIndex = 2;
177      //
178      // ChartControl
179      //
180      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
181      this.BackColor = System.Drawing.SystemColors.Control;
182      this.Controls.Add(this.buttonPanel);
183      this.Controls.Add(this.pictureBox);
184      this.DoubleBuffered = true;
185      this.Name = "ChartControl";
186      this.Size = new System.Drawing.Size(720, 500);
187      this.Load += new System.EventHandler(this.ChartControl_Load);
188      this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.OnKeyDown);
189      this.KeyUp += new System.Windows.Forms.KeyEventHandler(this.OnKeyUp);
190      ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).EndInit();
191      this.pictureBoxContextMenuStrip.ResumeLayout(false);
192      this.buttonPanel.ResumeLayout(false);
193      this.ResumeLayout(false);
194
195    }
196
197    #endregion
198
199    protected System.Windows.Forms.PictureBox pictureBox;
200    protected System.Windows.Forms.ToolTip toolTip;
201    protected System.Windows.Forms.ContextMenuStrip pictureBoxContextMenuStrip;
202    protected System.Windows.Forms.ToolStripMenuItem saveImageToolStripMenuItem;
203    protected System.Windows.Forms.ToolStripMenuItem propertiesToolStripMenuItem;
204    protected System.Windows.Forms.ToolStripMenuItem oneLayerUpToolStripMenuItem;
205    protected System.Windows.Forms.ToolStripMenuItem oneLayerDownToolStripMenuItem;
206    protected System.Windows.Forms.ToolStripMenuItem intoForegroundToolStripMenuItem;
207    protected System.Windows.Forms.ToolStripMenuItem intoBackgroundToolStripMenuItem;
208    protected System.Windows.Forms.ToolStripSeparator toolStripMenuItem1;
209    protected System.Windows.Forms.ToolStripSeparator toolStripMenuItem2;
210    protected System.Windows.Forms.FlowLayoutPanel buttonPanel;
211    protected System.Windows.Forms.SaveFileDialog saveFileDialog;
212  }
213}
Note: See TracBrowser for help on using the repository browser.