#region License Information /* HeuristicLab * Copyright (C) 2002-2013 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.DataPreprocessing { partial class DataPreprocessingView { /// /// 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 && (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(DataPreprocessingView)); this.splitContainer1 = new System.Windows.Forms.SplitContainer(); this.undoButton = new System.Windows.Forms.Button(); this.applyInNewTabButton = new System.Windows.Forms.Button(); this.exportProblemButton = new System.Windows.Forms.Button(); this.contentListView = new System.Windows.Forms.ListView(); this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost(); this.toolTip = new System.Windows.Forms.ToolTip(this.components); ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit(); this.splitContainer1.Panel1.SuspendLayout(); this.splitContainer1.Panel2.SuspendLayout(); this.splitContainer1.SuspendLayout(); this.SuspendLayout(); // // splitContainer1 // this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill; this.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel1; this.splitContainer1.Location = new System.Drawing.Point(0, 0); this.splitContainer1.Name = "splitContainer1"; // // splitContainer1.Panel1 // this.splitContainer1.Panel1.Controls.Add(this.undoButton); this.splitContainer1.Panel1.Controls.Add(this.applyInNewTabButton); this.splitContainer1.Panel1.Controls.Add(this.exportProblemButton); this.splitContainer1.Panel1.Controls.Add(this.contentListView); // // splitContainer1.Panel2 // this.splitContainer1.Panel2.Controls.Add(this.viewHost); this.splitContainer1.Size = new System.Drawing.Size(838, 449); this.splitContainer1.SplitterDistance = 181; this.splitContainer1.TabIndex = 0; // // undoButton // this.undoButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Undo; this.undoButton.Location = new System.Drawing.Point(72, 14); this.undoButton.Name = "undoButton"; this.undoButton.Size = new System.Drawing.Size(24, 24); this.undoButton.TabIndex = 3; this.toolTip.SetToolTip(this.undoButton, "Undo"); this.undoButton.UseVisualStyleBackColor = true; this.undoButton.Click += new System.EventHandler(this.undoButton_Click); // // applyInNewTabButton // this.applyInNewTabButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Play; this.applyInNewTabButton.Location = new System.Drawing.Point(42, 14); this.applyInNewTabButton.Name = "applyInNewTabButton"; this.applyInNewTabButton.Size = new System.Drawing.Size(24, 24); this.applyInNewTabButton.TabIndex = 2; this.toolTip.SetToolTip(this.applyInNewTabButton, "Apply in new tab"); this.applyInNewTabButton.UseVisualStyleBackColor = true; this.applyInNewTabButton.Click += new System.EventHandler(this.applyInNewTabButton_Click); // // exportProblemButton // this.exportProblemButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Save; this.exportProblemButton.Location = new System.Drawing.Point(12, 14); this.exportProblemButton.Name = "exportProblemButton"; this.exportProblemButton.Size = new System.Drawing.Size(24, 24); this.exportProblemButton.TabIndex = 1; this.toolTip.SetToolTip(this.exportProblemButton, "Export problem"); this.exportProblemButton.UseVisualStyleBackColor = true; this.exportProblemButton.Click += new System.EventHandler(this.exportProblemButton_Click); // // contentListView // this.contentListView.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.contentListView.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.contentListView.Location = new System.Drawing.Point(12, 44); this.contentListView.Name = "contentListView"; this.contentListView.Size = new System.Drawing.Size(157, 391); this.contentListView.TabIndex = 0; this.contentListView.UseCompatibleStateImageBehavior = false; this.contentListView.View = System.Windows.Forms.View.List; this.contentListView.SelectedIndexChanged += new System.EventHandler(this.listView1_SelectedIndexChanged); this.contentListView.DoubleClick += new System.EventHandler(this.listView1_DoubleClick); // // viewHost // this.viewHost.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.viewHost.Caption = "View"; this.viewHost.Content = null; this.viewHost.Enabled = false; this.viewHost.Location = new System.Drawing.Point(16, 44); this.viewHost.Name = "viewHost"; this.viewHost.ReadOnly = false; this.viewHost.Size = new System.Drawing.Size(621, 391); this.viewHost.TabIndex = 4; this.viewHost.ViewsLabelVisible = true; this.viewHost.ViewType = null; // // DataPreprocessingView // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.Controls.Add(this.splitContainer1); this.Name = "DataPreprocessingView"; this.Size = new System.Drawing.Size(838, 449); this.splitContainer1.Panel1.ResumeLayout(false); this.splitContainer1.Panel2.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit(); this.splitContainer1.ResumeLayout(false); this.ResumeLayout(false); } #endregion private System.Windows.Forms.ListView contentListView; private System.Windows.Forms.Button exportProblemButton; private System.Windows.Forms.Button applyInNewTabButton; private System.Windows.Forms.Button undoButton; private MainForm.WindowsForms.ViewHost viewHost; private System.Windows.Forms.SplitContainer splitContainer1; private System.Windows.Forms.ToolTip toolTip; } }