Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2845_EnhancedProgress/HeuristicLab.Core.Views/3.3/OperatorTreeView.Designer.cs @ 16311

Last change on this file since 16311 was 16311, checked in by pfleck, 5 years ago

#2845 Merged trunk changes into branch (15406-15681, 15683-16308)

File size: 5.9 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2018 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.Core.Views {
23  partial class OperatorTreeView {
24    /// <summary>
25    /// Required designer variable.
26    /// </summary>
27    private System.ComponentModel.IContainer components = null;
28
29    #region Component Designer generated code
30
31    /// <summary>
32    /// Required method for Designer support - do not modify
33    /// the contents of this method with the code editor.
34    /// </summary>
35    private void InitializeComponent() {
36      this.components = new System.ComponentModel.Container();
37      this.imageList = new System.Windows.Forms.ImageList(this.components);
38      this.graphTreeView = new System.Windows.Forms.TreeView();
39      this.graphContextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
40      this.breakpointToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
41      this.viewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
42      this.graphContextMenuStrip.SuspendLayout();
43      this.SuspendLayout();
44      //
45      // imageList
46      //
47      this.imageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth32Bit;
48      this.imageList.ImageSize = new System.Drawing.Size(16, 16);
49      this.imageList.TransparentColor = System.Drawing.Color.Transparent;
50      //
51      // graphTreeView
52      //
53      this.graphTreeView.AllowDrop = true;
54      this.graphTreeView.ContextMenuStrip = this.graphContextMenuStrip;
55      this.graphTreeView.Dock = System.Windows.Forms.DockStyle.Fill;
56      this.graphTreeView.HideSelection = false;
57      this.graphTreeView.ImageIndex = 0;
58      this.graphTreeView.ImageList = this.imageList;
59      this.graphTreeView.Location = new System.Drawing.Point(0, 0);
60      this.graphTreeView.Name = "graphTreeView";
61      this.graphTreeView.SelectedImageIndex = 0;
62      this.graphTreeView.ShowNodeToolTips = true;
63      this.graphTreeView.Size = new System.Drawing.Size(475, 291);
64      this.graphTreeView.TabIndex = 0;
65      this.graphTreeView.BeforeExpand += new System.Windows.Forms.TreeViewCancelEventHandler(this.graphTreeView_BeforeExpand);
66      this.graphTreeView.DragDrop += new System.Windows.Forms.DragEventHandler(this.graphTreeView_DragDrop);
67      this.graphTreeView.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.graphTreeView_AfterSelect);
68      this.graphTreeView.MouseDown += new System.Windows.Forms.MouseEventHandler(this.graphTreeView_MouseDown);
69      this.graphTreeView.DragEnter += new System.Windows.Forms.DragEventHandler(this.graphTreeView_DragEnterOver);
70      this.graphTreeView.KeyDown += new System.Windows.Forms.KeyEventHandler(this.graphTreeView_KeyDown);
71      this.graphTreeView.ItemDrag += new System.Windows.Forms.ItemDragEventHandler(this.graphTreeView_ItemDrag);
72      this.graphTreeView.DragOver += new System.Windows.Forms.DragEventHandler(this.graphTreeView_DragEnterOver);
73      //
74      // graphContextMenuStrip
75      //
76      this.graphContextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
77            this.breakpointToolStripMenuItem,
78            this.viewToolStripMenuItem});
79      this.graphContextMenuStrip.Name = "graphContextMenuStrip";
80      this.graphContextMenuStrip.Size = new System.Drawing.Size(132, 48);
81      this.graphContextMenuStrip.Opening += new System.ComponentModel.CancelEventHandler(this.graphContextMenuStrip_Opening);
82      //
83      // breakpointToolStripMenuItem
84      //
85      this.breakpointToolStripMenuItem.CheckOnClick = true;
86      this.breakpointToolStripMenuItem.Name = "breakpointToolStripMenuItem";
87      this.breakpointToolStripMenuItem.Size = new System.Drawing.Size(131, 22);
88      this.breakpointToolStripMenuItem.Text = "&Breakpoint";
89      this.breakpointToolStripMenuItem.ToolTipText = "Halt engine execution after executing the operator";
90      this.breakpointToolStripMenuItem.Click += new System.EventHandler(this.breakpointToolStripMenuItem_Click);
91      //
92      // viewToolStripMenuItem
93      //
94      this.viewToolStripMenuItem.Name = "viewToolStripMenuItem";
95      this.viewToolStripMenuItem.Size = new System.Drawing.Size(131, 22);
96      this.viewToolStripMenuItem.Text = "&View...";
97      this.viewToolStripMenuItem.ToolTipText = "View operator";
98      this.viewToolStripMenuItem.Click += new System.EventHandler(this.viewToolStripMenuItem_Click);
99      //
100      // OperatorTreeView
101      //
102      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
103      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
104      this.Controls.Add(this.graphTreeView);
105      this.Name = "OperatorTreeView";
106      this.Size = new System.Drawing.Size(475, 291);
107      this.graphContextMenuStrip.ResumeLayout(false);
108      this.ResumeLayout(false);
109
110    }
111
112    #endregion
113
114    private System.Windows.Forms.TreeView graphTreeView;
115    private System.Windows.Forms.ContextMenuStrip graphContextMenuStrip;
116    private System.Windows.Forms.ToolStripMenuItem breakpointToolStripMenuItem;
117    private System.Windows.Forms.ToolStripMenuItem viewToolStripMenuItem;
118    private System.Windows.Forms.ImageList imageList;
119  }
120}
Note: See TracBrowser for help on using the repository browser.