namespace HeuristicLab.Networks.IntegratedOptimization.Views { partial class OrchestratorNodeView { /// /// 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.tabControl = new System.Windows.Forms.TabControl(); this.parametersTabPage = new System.Windows.Forms.TabPage(); this.parameterCollectionView = new HeuristicLab.Core.Views.ParameterCollectionView(); this.portsTabPage = new System.Windows.Forms.TabPage(); this.portCollectionView = new HeuristicLab.Core.Networks.Views.PortCollectionView(); this.resultsTabPage = new System.Windows.Forms.TabPage(); this.resultCollectionView = new HeuristicLab.Optimization.Views.ResultCollectionView(); this.startButton = new System.Windows.Forms.Button(); this.pauseButton = new System.Windows.Forms.Button(); this.stopButton = new System.Windows.Forms.Button(); this.prepareButton = new System.Windows.Forms.Button(); ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit(); this.tabControl.SuspendLayout(); this.parametersTabPage.SuspendLayout(); this.portsTabPage.SuspendLayout(); this.resultsTabPage.SuspendLayout(); this.SuspendLayout(); // // nameTextBox // this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft); this.errorProvider.SetIconPadding(this.nameTextBox, 2); // // 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.parametersTabPage); this.tabControl.Controls.Add(this.portsTabPage); this.tabControl.Controls.Add(this.resultsTabPage); this.tabControl.Location = new System.Drawing.Point(0, 26); this.tabControl.Name = "tabControl"; this.tabControl.SelectedIndex = 0; this.tabControl.Size = new System.Drawing.Size(645, 462); this.tabControl.TabIndex = 3; // // parametersTabPage // this.parametersTabPage.Controls.Add(this.parameterCollectionView); this.parametersTabPage.Location = new System.Drawing.Point(4, 22); this.parametersTabPage.Name = "parametersTabPage"; this.parametersTabPage.Padding = new System.Windows.Forms.Padding(3); this.parametersTabPage.Size = new System.Drawing.Size(637, 436); this.parametersTabPage.TabIndex = 0; this.parametersTabPage.Text = "Parameters"; this.parametersTabPage.UseVisualStyleBackColor = true; // // parameterCollectionView // this.parameterCollectionView.AllowEditingOfHiddenParameters = true; this.parameterCollectionView.Caption = "ParameterCollection View"; this.parameterCollectionView.Content = null; this.parameterCollectionView.Dock = System.Windows.Forms.DockStyle.Fill; this.parameterCollectionView.Location = new System.Drawing.Point(3, 3); this.parameterCollectionView.Name = "parameterCollectionView"; this.parameterCollectionView.ReadOnly = false; this.parameterCollectionView.ShowDetails = true; this.parameterCollectionView.Size = new System.Drawing.Size(631, 430); this.parameterCollectionView.TabIndex = 0; // // portsTabPage // this.portsTabPage.Controls.Add(this.portCollectionView); this.portsTabPage.Location = new System.Drawing.Point(4, 22); this.portsTabPage.Name = "portsTabPage"; this.portsTabPage.Padding = new System.Windows.Forms.Padding(3); this.portsTabPage.Size = new System.Drawing.Size(637, 436); this.portsTabPage.TabIndex = 1; this.portsTabPage.Text = "Ports"; this.portsTabPage.UseVisualStyleBackColor = true; // // portCollectionView // this.portCollectionView.Caption = "PortCollection View"; this.portCollectionView.Content = null; this.portCollectionView.Dock = System.Windows.Forms.DockStyle.Fill; this.portCollectionView.Location = new System.Drawing.Point(3, 3); this.portCollectionView.Name = "portCollectionView"; this.portCollectionView.ReadOnly = false; this.portCollectionView.ShowDetails = true; this.portCollectionView.Size = new System.Drawing.Size(631, 430); this.portCollectionView.TabIndex = 0; // // resultsTabPage // this.resultsTabPage.Controls.Add(this.resultCollectionView); this.resultsTabPage.Location = new System.Drawing.Point(4, 22); this.resultsTabPage.Name = "resultsTabPage"; this.resultsTabPage.Padding = new System.Windows.Forms.Padding(3); this.resultsTabPage.Size = new System.Drawing.Size(637, 436); this.resultsTabPage.TabIndex = 2; this.resultsTabPage.Text = "Results"; this.resultsTabPage.UseVisualStyleBackColor = true; // // resultCollectionView // this.resultCollectionView.Caption = "ResultCollection View"; this.resultCollectionView.Content = null; this.resultCollectionView.Dock = System.Windows.Forms.DockStyle.Fill; this.resultCollectionView.Location = new System.Drawing.Point(3, 3); this.resultCollectionView.Name = "resultCollectionView"; this.resultCollectionView.ReadOnly = true; this.resultCollectionView.ShowDetails = true; this.resultCollectionView.Size = new System.Drawing.Size(631, 430); this.resultCollectionView.TabIndex = 0; // // startButton // this.startButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.startButton.Location = new System.Drawing.Point(0, 494); this.startButton.Name = "startButton"; this.startButton.Size = new System.Drawing.Size(23, 23); this.startButton.TabIndex = 4; this.startButton.Text = "Start"; this.startButton.UseVisualStyleBackColor = true; this.startButton.Click += new System.EventHandler(this.startButton_Click); // // pauseButton // this.pauseButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.pauseButton.Location = new System.Drawing.Point(29, 494); this.pauseButton.Name = "pauseButton"; this.pauseButton.Size = new System.Drawing.Size(23, 23); this.pauseButton.TabIndex = 5; this.pauseButton.Text = "Pause"; this.pauseButton.UseVisualStyleBackColor = true; this.pauseButton.Click += new System.EventHandler(this.pauseButton_Click); // // stopButton // this.stopButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.stopButton.Location = new System.Drawing.Point(58, 494); this.stopButton.Name = "stopButton"; this.stopButton.Size = new System.Drawing.Size(23, 23); this.stopButton.TabIndex = 6; this.stopButton.Text = "Stop"; this.stopButton.UseVisualStyleBackColor = true; this.stopButton.Click += new System.EventHandler(this.stopButton_Click); // // prepareButton // this.prepareButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.prepareButton.Location = new System.Drawing.Point(87, 494); this.prepareButton.Name = "prepareButton"; this.prepareButton.Size = new System.Drawing.Size(23, 23); this.prepareButton.TabIndex = 7; this.prepareButton.Text = "Prepare"; this.prepareButton.UseVisualStyleBackColor = true; this.prepareButton.Click += new System.EventHandler(this.prepareButton_Click); // // OrchestratorNodeView // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.Controls.Add(this.prepareButton); this.Controls.Add(this.stopButton); this.Controls.Add(this.pauseButton); this.Controls.Add(this.startButton); this.Controls.Add(this.tabControl); this.Name = "OrchestratorNodeView"; this.Controls.SetChildIndex(this.nameLabel, 0); this.Controls.SetChildIndex(this.nameTextBox, 0); this.Controls.SetChildIndex(this.infoLabel, 0); this.Controls.SetChildIndex(this.tabControl, 0); this.Controls.SetChildIndex(this.startButton, 0); this.Controls.SetChildIndex(this.pauseButton, 0); this.Controls.SetChildIndex(this.stopButton, 0); this.Controls.SetChildIndex(this.prepareButton, 0); ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit(); this.tabControl.ResumeLayout(false); this.parametersTabPage.ResumeLayout(false); this.portsTabPage.ResumeLayout(false); this.resultsTabPage.ResumeLayout(false); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.TabControl tabControl; private System.Windows.Forms.TabPage parametersTabPage; private System.Windows.Forms.TabPage portsTabPage; private Core.Networks.Views.PortCollectionView portCollectionView; private System.Windows.Forms.Button startButton; private Core.Views.ParameterCollectionView parameterCollectionView; private System.Windows.Forms.TabPage resultsTabPage; private Optimization.Views.ResultCollectionView resultCollectionView; private System.Windows.Forms.Button pauseButton; private System.Windows.Forms.Button stopButton; private System.Windows.Forms.Button prepareButton; } }