Free cookie consent management tool by TermsFeed Policy Generator

source: stable/HeuristicLab.MainForm.WindowsForms/3.3/MainForms/DockForm.Designer.cs @ 13883

Last change on this file since 13883 was 13883, checked in by mkommend, 8 years ago

#1235: Merged r13458,r13614,r13627,r13628 into stable.

File size: 6.0 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.MainForm.WindowsForms {
23  partial class DockForm {
24    /// <summary>
25    /// Required designer variable.
26    /// </summary>
27    private System.ComponentModel.IContainer components = null;
28
29    #region Windows Form 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      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DockForm));
38      this.viewPanel = new System.Windows.Forms.Panel();
39      this.contextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
40      this.closeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
41      this.closeAllToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
42      this.closeAllButThisToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
43      this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
44      this.cloneToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
45      this.contextMenuStrip.SuspendLayout();
46      this.SuspendLayout();
47      //
48      // viewPanel
49      //
50      this.viewPanel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
51            | System.Windows.Forms.AnchorStyles.Left)
52            | System.Windows.Forms.AnchorStyles.Right)));
53      this.viewPanel.Location = new System.Drawing.Point(12, 12);
54      this.viewPanel.Name = "viewPanel";
55      this.viewPanel.Size = new System.Drawing.Size(608, 422);
56      this.viewPanel.TabIndex = 0;
57      //
58      // contextMenuStrip
59      //
60      this.contextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
61            this.closeToolStripMenuItem,
62            this.closeAllToolStripMenuItem,
63            this.closeAllButThisToolStripMenuItem,
64            this.toolStripSeparator1,
65            this.cloneToolStripMenuItem});
66      this.contextMenuStrip.Name = "contextMenuStrip";
67      this.contextMenuStrip.Size = new System.Drawing.Size(167, 120);
68      this.contextMenuStrip.Opening += new System.ComponentModel.CancelEventHandler(this.contextMenuStrip_Opening);
69      //
70      // closeToolStripMenuItem
71      //
72      this.closeToolStripMenuItem.Name = "closeToolStripMenuItem";
73      this.closeToolStripMenuItem.Size = new System.Drawing.Size(166, 22);
74      this.closeToolStripMenuItem.Text = "Close";
75      this.closeToolStripMenuItem.Click += new System.EventHandler(this.closeToolStripMenuItem_Click);
76      //
77      // closeAllToolStripMenuItem
78      //
79      this.closeAllToolStripMenuItem.Name = "closeAllToolStripMenuItem";
80      this.closeAllToolStripMenuItem.Size = new System.Drawing.Size(166, 22);
81      this.closeAllToolStripMenuItem.Text = "Close All";
82      this.closeAllToolStripMenuItem.Click += new System.EventHandler(this.closeAllToolStripMenuItem_Click);
83      //
84      // closeAllButThisToolStripMenuItem
85      //
86      this.closeAllButThisToolStripMenuItem.Name = "closeAllButThisToolStripMenuItem";
87      this.closeAllButThisToolStripMenuItem.Size = new System.Drawing.Size(166, 22);
88      this.closeAllButThisToolStripMenuItem.Text = "Close All But This";
89      this.closeAllButThisToolStripMenuItem.Click += new System.EventHandler(this.closeAllButThisToolStripMenuItem_Click);
90      //
91      // toolStripSeparator1
92      //
93      this.toolStripSeparator1.Name = "toolStripSeparator1";
94      this.toolStripSeparator1.Size = new System.Drawing.Size(163, 6);
95      //
96      // cloneToolStripMenuItem
97      //
98      this.cloneToolStripMenuItem.Name = "cloneToolStripMenuItem";
99      this.cloneToolStripMenuItem.Size = new System.Drawing.Size(166, 22);
100      this.cloneToolStripMenuItem.Text = "Create Copy";
101      this.cloneToolStripMenuItem.Click += new System.EventHandler(this.cloneToolStripMenuItem_Click);
102      //
103      // DockForm
104      //
105      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
106      this.ClientSize = new System.Drawing.Size(632, 446);
107      this.Controls.Add(this.viewPanel);
108      this.Icon = HeuristicLab.Common.Resources.HeuristicLab.Icon;
109      this.Name = "DockForm";
110      this.ShowIcon = false;
111      this.ShowInTaskbar = false;
112      this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
113      this.TabPageContextMenuStrip = this.contextMenuStrip;
114      this.contextMenuStrip.ResumeLayout(false);
115      this.ResumeLayout(false);
116
117    }
118
119    #endregion
120
121    private System.Windows.Forms.Panel viewPanel;
122    private System.Windows.Forms.ContextMenuStrip contextMenuStrip;
123    private System.Windows.Forms.ToolStripMenuItem closeToolStripMenuItem;
124    private System.Windows.Forms.ToolStripMenuItem closeAllToolStripMenuItem;
125    private System.Windows.Forms.ToolStripMenuItem closeAllButThisToolStripMenuItem;
126    private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
127    private System.Windows.Forms.ToolStripMenuItem cloneToolStripMenuItem;
128  }
129}
Note: See TracBrowser for help on using the repository browser.