Free cookie consent management tool by TermsFeed Policy Generator

source: branches/UnloadJobs/HeuristicLab.MainForm.WindowsForms/3.3/Controls/ViewHost.Designer.cs @ 9184

Last change on this file since 9184 was 9184, checked in by ascheibe, 11 years ago

#2005 merged changes from trunk into branch

File size: 5.9 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2012 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 ViewHost {
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) {
35        if (components != null) 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.messageLabel = new System.Windows.Forms.Label();
49      this.viewsLabel = new System.Windows.Forms.Label();
50      this.viewContextMenuStrip = new HeuristicLab.MainForm.WindowsForms.ViewContextMenuStrip();
51      this.toolTip = new System.Windows.Forms.ToolTip(this.components);
52      this.configurationLabel = new System.Windows.Forms.Label();
53      this.SuspendLayout();
54      //
55      // messageLabel
56      //
57      this.messageLabel.Dock = System.Windows.Forms.DockStyle.Fill;
58      this.messageLabel.Location = new System.Drawing.Point(0, 0);
59      this.messageLabel.Name = "messageLabel";
60      this.messageLabel.Size = new System.Drawing.Size(227, 184);
61      this.messageLabel.TabIndex = 2;
62      this.messageLabel.Text = "No view available.";
63      this.messageLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
64      //
65      // viewsLabel
66      //
67      this.viewsLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
68      this.viewsLabel.ContextMenuStrip = this.viewContextMenuStrip;
69      this.viewsLabel.Image = HeuristicLab.Common.Resources.VSImageLibrary.Windows;
70      this.viewsLabel.Location = new System.Drawing.Point(211, 0);
71      this.viewsLabel.Margin = new System.Windows.Forms.Padding(6, 3, 3, 3);
72      this.viewsLabel.Name = "viewsLabel";
73      this.viewsLabel.Size = new System.Drawing.Size(16, 16);
74      this.viewsLabel.TabIndex = 0;
75      this.toolTip.SetToolTip(this.viewsLabel,
76        "Double-click to open a new window of the current view." + System.Environment.NewLine +
77        "Right-click to change current view." + System.Environment.NewLine +
78        "Drag icon to copy or link content to another view.");
79      this.viewsLabel.DoubleClick += new System.EventHandler(this.viewsLabel_DoubleClick);
80      this.viewsLabel.MouseDown += new System.Windows.Forms.MouseEventHandler(this.viewsLabel_MouseDown);
81      this.viewsLabel.MouseLeave += new System.EventHandler(this.viewsLabel_MouseLeave);
82      //
83      // viewContextMenuStrip
84      //
85      this.viewContextMenuStrip.IgnoredViewTypes = System.Type.EmptyTypes;
86      this.viewContextMenuStrip.Item = null;
87      this.viewContextMenuStrip.Name = "viewContextMenuStrip";
88      this.viewContextMenuStrip.Size = new System.Drawing.Size(61, 4);
89      this.viewContextMenuStrip.ItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.viewContextMenuStrip_ItemClicked);
90      //
91      // configurationLabel
92      //
93      this.configurationLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
94      this.configurationLabel.Image = HeuristicLab.Common.Resources.VSImageLibrary.EditInformation;
95      this.configurationLabel.Location = new System.Drawing.Point(211, 22);
96      this.configurationLabel.Margin = new System.Windows.Forms.Padding(6, 3, 3, 3);
97      this.configurationLabel.Name = "configurationLabel";
98      this.configurationLabel.Size = new System.Drawing.Size(16, 16);
99      this.configurationLabel.TabIndex = 1;
100      this.toolTip.SetToolTip(this.configurationLabel, "Double-click to open view configuration.");
101      this.configurationLabel.Visible = false;
102      this.configurationLabel.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.configurationLabel_DoubleClick);
103      //
104      // ViewHost
105      //
106      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
107      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
108      this.Controls.Add(this.viewsLabel);
109      this.Controls.Add(this.configurationLabel);
110      this.Controls.Add(this.messageLabel);
111      this.Name = "ViewHost";
112      this.Size = new System.Drawing.Size(227, 184);
113      this.ResumeLayout(false);
114
115    }
116    #endregion
117
118    private System.Windows.Forms.Label viewsLabel;
119    private System.Windows.Forms.Label messageLabel;
120    private System.Windows.Forms.ToolTip toolTip;
121    private HeuristicLab.MainForm.WindowsForms.ViewContextMenuStrip viewContextMenuStrip;
122    private System.Windows.Forms.Label configurationLabel;
123
124  }
125}
Note: See TracBrowser for help on using the repository browser.