#region License Information
/* HeuristicLab
* Copyright (C) 2002-2015 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.BioBoost.Views {
partial class BioBoostSolutionCostsView {
///
/// 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.costsGroupBox = new System.Windows.Forms.GroupBox();
this.costsTextBox1 = new System.Windows.Forms.TextBox();
this.costsTextBox1Label = new System.Windows.Forms.Label();
this.costsDataGridView = new System.Windows.Forms.DataGridView();
this.costsColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.costsColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.costsGroupBox.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.costsDataGridView)).BeginInit();
this.SuspendLayout();
//
// costsGroupBox
//
this.costsGroupBox.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.costsGroupBox.Controls.Add(this.costsTextBox1);
this.costsGroupBox.Controls.Add(this.costsTextBox1Label);
this.costsGroupBox.Controls.Add(this.costsDataGridView);
this.costsGroupBox.Location = new System.Drawing.Point(0, 0);
this.costsGroupBox.Name = "costsGroupBox";
this.costsGroupBox.Size = new System.Drawing.Size(349, 417);
this.costsGroupBox.TabIndex = 3;
this.costsGroupBox.TabStop = false;
this.costsGroupBox.Text = "Costs Summary";
//
// costsTextBox1
//
this.costsTextBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.costsTextBox1.BackColor = System.Drawing.SystemColors.Window;
this.costsTextBox1.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.costsTextBox1.Font = new System.Drawing.Font("Lucida Console", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.costsTextBox1.Location = new System.Drawing.Point(209, 399);
this.costsTextBox1.Name = "costsTextBox1";
this.costsTextBox1.ReadOnly = true;
this.costsTextBox1.Size = new System.Drawing.Size(134, 11);
this.costsTextBox1.TabIndex = 4;
this.costsTextBox1.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
//
// costsTextBox1Label
//
this.costsTextBox1Label.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.costsTextBox1Label.AutoSize = true;
this.costsTextBox1Label.Location = new System.Drawing.Point(120, 397);
this.costsTextBox1Label.Name = "costsTextBox1Label";
this.costsTextBox1Label.Size = new System.Drawing.Size(89, 13);
this.costsTextBox1Label.TabIndex = 3;
this.costsTextBox1Label.Text = "Total Costs (€/a):";
//
// costsDataGridView
//
this.costsDataGridView.AllowUserToAddRows = false;
this.costsDataGridView.AllowUserToDeleteRows = false;
this.costsDataGridView.AllowUserToResizeRows = false;
this.costsDataGridView.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.costsDataGridView.BackgroundColor = System.Drawing.SystemColors.Window;
this.costsDataGridView.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.costsDataGridView.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.None;
this.costsDataGridView.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.None;
this.costsDataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.costsDataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.costsColumn1,
this.costsColumn2});
this.costsDataGridView.Location = new System.Drawing.Point(6, 19);
this.costsDataGridView.Name = "costsDataGridView";
this.costsDataGridView.ReadOnly = true;
this.costsDataGridView.RowHeadersVisible = false;
this.costsDataGridView.RowTemplate.Height = 16;
this.costsDataGridView.Size = new System.Drawing.Size(337, 374);
this.costsDataGridView.TabIndex = 0;
//
// costsColumn1
//
this.costsColumn1.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
this.costsColumn1.HeaderText = "Item";
this.costsColumn1.Name = "costsColumn1";
this.costsColumn1.ReadOnly = true;
//
// costsColumn2
//
this.costsColumn2.HeaderText = "€/a";
this.costsColumn2.MinimumWidth = 50;
this.costsColumn2.Name = "costsColumn2";
this.costsColumn2.ReadOnly = true;
this.costsColumn2.Width = 120;
//
// BioBoostSolutionCostsView
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.costsGroupBox);
this.Name = "BioBoostSolutionCostsView";
this.Size = new System.Drawing.Size(349, 417);
this.costsGroupBox.ResumeLayout(false);
this.costsGroupBox.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.costsDataGridView)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.GroupBox costsGroupBox;
private System.Windows.Forms.DataGridView costsDataGridView;
private System.Windows.Forms.DataGridViewTextBoxColumn costsColumn1;
private System.Windows.Forms.DataGridViewTextBoxColumn costsColumn2;
private System.Windows.Forms.TextBox costsTextBox1;
private System.Windows.Forms.Label costsTextBox1Label;
}
}