#region License Information /* HeuristicLab * Copyright (C) 2002-2016 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.Encodings.PermutationEncoding.Views { partial class PermutationHistoryView { /// /// 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() { System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea(); System.Windows.Forms.DataVisualization.Charting.Legend legend1 = new System.Windows.Forms.DataVisualization.Charting.Legend(); this.tabControl = new System.Windows.Forms.TabControl(); this.movieTabPage = new System.Windows.Forms.TabPage(); this.trackBar = new System.Windows.Forms.TrackBar(); this.graphTabPage = new System.Windows.Forms.TabPage(); this.permutationView = new HeuristicLab.Encodings.PermutationEncoding.Views.PermutationView(); this.chart1 = new System.Windows.Forms.DataVisualization.Charting.Chart(); this.progressBar1 = new System.Windows.Forms.ProgressBar(); this.tabControl.SuspendLayout(); this.movieTabPage.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.trackBar)).BeginInit(); this.graphTabPage.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit(); this.SuspendLayout(); // // tabControl // this.tabControl.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.tabControl.Controls.Add(this.movieTabPage); this.tabControl.Controls.Add(this.graphTabPage); this.tabControl.Location = new System.Drawing.Point(3, 3); this.tabControl.Name = "tabControl"; this.tabControl.SelectedIndex = 0; this.tabControl.Size = new System.Drawing.Size(387, 383); this.tabControl.TabIndex = 4; this.tabControl.Selected += new System.Windows.Forms.TabControlEventHandler(this.tabControl_Selected); // // movieTabPage // this.movieTabPage.Controls.Add(this.permutationView); this.movieTabPage.Controls.Add(this.trackBar); this.movieTabPage.Location = new System.Drawing.Point(4, 22); this.movieTabPage.Name = "movieTabPage"; this.movieTabPage.Padding = new System.Windows.Forms.Padding(3); this.movieTabPage.Size = new System.Drawing.Size(379, 357); this.movieTabPage.TabIndex = 0; this.movieTabPage.Text = "Movie"; this.movieTabPage.UseVisualStyleBackColor = true; // // trackBar // this.trackBar.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.trackBar.Location = new System.Drawing.Point(6, 306); this.trackBar.Name = "trackBar"; this.trackBar.Size = new System.Drawing.Size(367, 45); this.trackBar.TabIndex = 0; this.trackBar.Scroll += new System.EventHandler(this.trackBar_Scroll); // // graphTabPage // this.graphTabPage.Controls.Add(this.progressBar1); this.graphTabPage.Controls.Add(this.chart1); this.graphTabPage.Location = new System.Drawing.Point(4, 22); this.graphTabPage.Name = "graphTabPage"; this.graphTabPage.Padding = new System.Windows.Forms.Padding(3); this.graphTabPage.Size = new System.Drawing.Size(379, 357); this.graphTabPage.TabIndex = 1; this.graphTabPage.Text = "Graph"; this.graphTabPage.UseVisualStyleBackColor = true; // // permutationView // this.permutationView.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.permutationView.Caption = "Permutation View"; this.permutationView.Content = null; this.permutationView.Location = new System.Drawing.Point(6, 6); this.permutationView.Name = "permutationView"; this.permutationView.ReadOnly = false; this.permutationView.Size = new System.Drawing.Size(367, 294); this.permutationView.TabIndex = 1; // // chart1 // this.chart1.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))); chartArea1.Name = "ChartArea1"; this.chart1.ChartAreas.Add(chartArea1); legend1.Name = "Legend1"; this.chart1.Legends.Add(legend1); this.chart1.Location = new System.Drawing.Point(6, 6); this.chart1.Name = "chart1"; this.chart1.Size = new System.Drawing.Size(367, 316); this.chart1.TabIndex = 0; this.chart1.Text = "chart"; // // progressBar1 // this.progressBar1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.progressBar1.Location = new System.Drawing.Point(7, 328); this.progressBar1.Name = "progressBar1"; this.progressBar1.Size = new System.Drawing.Size(366, 23); this.progressBar1.TabIndex = 1; // // PermutationHistoryView // this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit; this.Controls.Add(this.tabControl); this.Name = "PermutationHistoryView"; this.Size = new System.Drawing.Size(393, 389); this.tabControl.ResumeLayout(false); this.movieTabPage.ResumeLayout(false); this.movieTabPage.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.trackBar)).EndInit(); this.graphTabPage.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit(); this.ResumeLayout(false); } #endregion private System.Windows.Forms.TabControl tabControl; private System.Windows.Forms.TabPage movieTabPage; private System.Windows.Forms.TabPage graphTabPage; private System.Windows.Forms.TrackBar trackBar; private PermutationView permutationView; private System.Windows.Forms.DataVisualization.Charting.Chart chart1; private System.Windows.Forms.ProgressBar progressBar1; } }