Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Core/3.3/ScopeView.Designer.cs @ 1921

Last change on this file since 1921 was 1529, checked in by gkronber, 15 years ago

Moved source files of plugins AdvancedOptimizationFrontEnd ... Grid into version-specific sub-folders. #576

File size: 6.9 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2008 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 {
23  partial class ScopeView {
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 (scopesTreeView.Nodes.Count > 0) {
35        RemoveTreeNode(scopesTreeView.Nodes[0]);
36        scopesTreeView.Nodes.Clear();
37      }
38      if (disposing && (components != null)) {
39        components.Dispose();
40      }
41      base.Dispose(disposing);
42    }
43
44    #region Component Designer generated code
45
46    /// <summary>
47    /// Required method for Designer support - do not modify
48    /// the contents of this method with the code editor.
49    /// </summary>
50    private void InitializeComponent() {
51      this.components = new System.ComponentModel.Container();
52      this.scopesTreeView = new System.Windows.Forms.TreeView();
53      this.contextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
54      this.automaticUpdatingToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
55      this.refreshToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
56      this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator();
57      this.viewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
58      this.variablesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
59      this.contextMenuStrip.SuspendLayout();
60      this.SuspendLayout();
61      //
62      // scopesTreeView
63      //
64      this.scopesTreeView.ContextMenuStrip = this.contextMenuStrip;
65      this.scopesTreeView.Dock = System.Windows.Forms.DockStyle.Fill;
66      this.scopesTreeView.HideSelection = false;
67      this.scopesTreeView.Location = new System.Drawing.Point(0, 0);
68      this.scopesTreeView.Name = "scopesTreeView";
69      this.scopesTreeView.ShowNodeToolTips = true;
70      this.scopesTreeView.Size = new System.Drawing.Size(400, 400);
71      this.scopesTreeView.TabIndex = 0;
72      this.scopesTreeView.AfterCollapse += new System.Windows.Forms.TreeViewEventHandler(this.scopesTreeView_AfterCollapse);
73      this.scopesTreeView.BeforeExpand += new System.Windows.Forms.TreeViewCancelEventHandler(this.scopesTreeView_BeforeExpand);
74      this.scopesTreeView.DoubleClick += new System.EventHandler(this.scopesTreeView_DoubleClick);
75      this.scopesTreeView.MouseDown += new System.Windows.Forms.MouseEventHandler(this.scopesTreeView_MouseDown);
76      this.scopesTreeView.ItemDrag += new System.Windows.Forms.ItemDragEventHandler(this.scopesTreeView_ItemDrag);
77      //
78      // contextMenuStrip
79      //
80      this.contextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
81            this.automaticUpdatingToolStripMenuItem,
82            this.refreshToolStripMenuItem,
83            this.toolStripMenuItem1,
84            this.variablesToolStripMenuItem,
85            this.viewToolStripMenuItem});
86      this.contextMenuStrip.Name = "contextMenuStrip";
87      this.contextMenuStrip.Size = new System.Drawing.Size(180, 98);
88      this.contextMenuStrip.Opening += new System.ComponentModel.CancelEventHandler(this.contextMenuStrip_Opening);
89      //
90      // automaticUpdatingToolStripMenuItem
91      //
92      this.automaticUpdatingToolStripMenuItem.CheckOnClick = true;
93      this.automaticUpdatingToolStripMenuItem.Name = "automaticUpdatingToolStripMenuItem";
94      this.automaticUpdatingToolStripMenuItem.Size = new System.Drawing.Size(179, 22);
95      this.automaticUpdatingToolStripMenuItem.Text = "Automatic &Updating";
96      this.automaticUpdatingToolStripMenuItem.ToolTipText = "Automatically update scope editor during execution";
97      this.automaticUpdatingToolStripMenuItem.Click += new System.EventHandler(this.automaticUpdatingToolStripMenuItem_Click);
98      //
99      // refreshToolStripMenuItem
100      //
101      this.refreshToolStripMenuItem.Name = "refreshToolStripMenuItem";
102      this.refreshToolStripMenuItem.Size = new System.Drawing.Size(179, 22);
103      this.refreshToolStripMenuItem.Text = "&Refresh";
104      this.refreshToolStripMenuItem.Click += new System.EventHandler(this.refreshToolStripMenuItem_Click);
105      //
106      // toolStripMenuItem1
107      //
108      this.toolStripMenuItem1.Name = "toolStripMenuItem1";
109      this.toolStripMenuItem1.Size = new System.Drawing.Size(176, 6);
110      //
111      // viewToolStripMenuItem
112      //
113      this.viewToolStripMenuItem.Name = "viewToolStripMenuItem";
114      this.viewToolStripMenuItem.Size = new System.Drawing.Size(179, 22);
115      this.viewToolStripMenuItem.Text = "&View";
116      //
117      // variablesToolStripMenuItem
118      //
119      this.variablesToolStripMenuItem.Name = "variablesToolStripMenuItem";
120      this.variablesToolStripMenuItem.Size = new System.Drawing.Size(179, 22);
121      this.variablesToolStripMenuItem.Text = "&Variables...";
122      this.variablesToolStripMenuItem.Click += new System.EventHandler(this.variablesToolStripMenuItem_Click);
123      //
124      // ScopeView
125      //
126      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
127      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
128      this.Controls.Add(this.scopesTreeView);
129      this.Name = "ScopeView";
130      this.Size = new System.Drawing.Size(400, 400);
131      this.contextMenuStrip.ResumeLayout(false);
132      this.ResumeLayout(false);
133
134    }
135
136    #endregion
137
138    private System.Windows.Forms.TreeView scopesTreeView;
139    private System.Windows.Forms.ContextMenuStrip contextMenuStrip;
140    private System.Windows.Forms.ToolStripMenuItem viewToolStripMenuItem;
141    private System.Windows.Forms.ToolStripMenuItem automaticUpdatingToolStripMenuItem;
142    private System.Windows.Forms.ToolStripMenuItem refreshToolStripMenuItem;
143    private System.Windows.Forms.ToolStripSeparator toolStripMenuItem1;
144    private System.Windows.Forms.ToolStripMenuItem variablesToolStripMenuItem;
145  }
146}
Note: See TracBrowser for help on using the repository browser.