#region License Information /* HeuristicLab * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) * * This file is part of HeuristicLab. * * HeuristicLab is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * HeuristicLab is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with HeuristicLab. If not, see . */ #endregion namespace HeuristicLab.MainForm.WindowsForms { partial class ViewHost { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing) { if (components != null) components.Dispose(); } base.Dispose(disposing); } #region Component Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ViewHost)); this.viewPanel = new ViewHostPanel(); this.messageLabel = new System.Windows.Forms.Label(); this.viewsLabel = new System.Windows.Forms.Label(); this.viewContextMenuStrip = new HeuristicLab.MainForm.WindowsForms.ViewContextMenuStrip(); this.toolTip = new System.Windows.Forms.ToolTip(this.components); this.SuspendLayout(); // // viewPanel // this.viewPanel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.viewPanel.Location = new System.Drawing.Point(0, 0); this.viewPanel.Name = "viewPanel"; this.viewPanel.Size = new System.Drawing.Size(205, 184); this.viewPanel.TabIndex = 1; // // messageLabel // this.messageLabel.Dock = System.Windows.Forms.DockStyle.Fill; this.messageLabel.Location = new System.Drawing.Point(0, 0); this.messageLabel.Name = "messageLabel"; this.messageLabel.Size = new System.Drawing.Size(227, 184); this.messageLabel.TabIndex = 2; this.messageLabel.Text = "No view available."; this.messageLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // viewsLabel // this.viewsLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.viewsLabel.ContextMenuStrip = this.viewContextMenuStrip; this.viewsLabel.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Windows; this.viewsLabel.Location = new System.Drawing.Point(211, 0); this.viewsLabel.Name = "viewsLabel"; this.viewsLabel.Size = new System.Drawing.Size(16, 16); this.viewsLabel.TabIndex = 0; this.toolTip.SetToolTip(this.viewsLabel, "Double-click to open a new window of the current view.\r\nRight-click to change cur" + "rent view.\r\nDrag icon to copy or link content to another view."); this.viewsLabel.MouseLeave += new System.EventHandler(this.viewsLabel_MouseLeave); this.viewsLabel.DoubleClick += new System.EventHandler(this.viewsLabel_DoubleClick); this.viewsLabel.MouseDown += new System.Windows.Forms.MouseEventHandler(this.viewsLabel_MouseDown); // // viewContextMenuStrip // this.viewContextMenuStrip.Item = null; this.viewContextMenuStrip.Name = "viewContextMenuStrip"; this.viewContextMenuStrip.Size = new System.Drawing.Size(61, 4); this.viewContextMenuStrip.ItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.viewContextMenuStrip_ItemClicked); // // ViewHost // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.Controls.Add(this.viewPanel); this.Controls.Add(this.viewsLabel); this.Controls.Add(this.messageLabel); this.Name = "ViewHost"; this.Size = new System.Drawing.Size(227, 184); this.ResumeLayout(false); } #endregion private ViewHostPanel viewPanel; private System.Windows.Forms.Label viewsLabel; private System.Windows.Forms.Label messageLabel; private System.Windows.Forms.ToolTip toolTip; private HeuristicLab.MainForm.WindowsForms.ViewContextMenuStrip viewContextMenuStrip; } }