[13074] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
| 4 | *
|
---|
| 5 | * This file is part of HeuristicLab.
|
---|
| 6 | *
|
---|
| 7 | * HeuristicLab is free software: you can redistribute it and/or modify
|
---|
| 8 | * it under the terms of the GNU General Public License as published by
|
---|
| 9 | * the Free Software Foundation, either version 3 of the License, or
|
---|
| 10 | * (at your option) any later version.
|
---|
| 11 | *
|
---|
| 12 | * HeuristicLab is distributed in the hope that it will be useful,
|
---|
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 15 | * GNU General Public License for more details.
|
---|
| 16 | *
|
---|
| 17 | * You should have received a copy of the GNU General Public License
|
---|
| 18 | * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
|
---|
| 19 | */
|
---|
| 20 | #endregion
|
---|
| 21 |
|
---|
| 22 | namespace HeuristicLab.BioBoost.Views {
|
---|
[13072] | 23 | partial class BioBoostRegionDetailView {
|
---|
| 24 | /// <summary>
|
---|
| 25 | /// Required designer variable.
|
---|
| 26 | /// </summary>
|
---|
| 27 | private System.ComponentModel.IContainer components = null;
|
---|
| 28 |
|
---|
| 29 | /// <summary>
|
---|
| 30 | /// Clean up any resources being used.
|
---|
| 31 | /// </summary>
|
---|
| 32 | /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
---|
| 33 | protected override void Dispose(bool disposing) {
|
---|
| 34 | if (disposing && (components != null)) {
|
---|
| 35 | components.Dispose();
|
---|
| 36 | }
|
---|
| 37 | base.Dispose(disposing);
|
---|
| 38 | }
|
---|
| 39 |
|
---|
| 40 | #region Component Designer generated code
|
---|
| 41 |
|
---|
| 42 | /// <summary>
|
---|
| 43 | /// Required method for Designer support - do not modify
|
---|
| 44 | /// the contents of this method with the code editor.
|
---|
| 45 | /// </summary>
|
---|
| 46 | private void InitializeComponent() {
|
---|
| 47 | System.Windows.Forms.GroupBox plantsGroupBox;
|
---|
| 48 | this.dataGridView = new System.Windows.Forms.DataGridView();
|
---|
| 49 | this.NameColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
---|
| 50 | this.ValueColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
---|
| 51 | this.regionNameLabel = new System.Windows.Forms.LinkLabel();
|
---|
| 52 | this.regionDescriptionLabel = new System.Windows.Forms.Label();
|
---|
| 53 | plantsGroupBox = new System.Windows.Forms.GroupBox();
|
---|
| 54 | plantsGroupBox.SuspendLayout();
|
---|
| 55 | ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
|
---|
| 56 | this.SuspendLayout();
|
---|
| 57 | //
|
---|
| 58 | // plantsGroupBox
|
---|
| 59 | //
|
---|
| 60 | plantsGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 61 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 62 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 63 | plantsGroupBox.Controls.Add(this.dataGridView);
|
---|
| 64 | plantsGroupBox.Location = new System.Drawing.Point(3, 30);
|
---|
| 65 | plantsGroupBox.Name = "plantsGroupBox";
|
---|
| 66 | plantsGroupBox.Size = new System.Drawing.Size(286, 536);
|
---|
| 67 | plantsGroupBox.TabIndex = 4;
|
---|
| 68 | plantsGroupBox.TabStop = false;
|
---|
| 69 | plantsGroupBox.Text = "Regional Values";
|
---|
| 70 | //
|
---|
| 71 | // dataGridView
|
---|
| 72 | //
|
---|
| 73 | this.dataGridView.AllowUserToAddRows = false;
|
---|
| 74 | this.dataGridView.AllowUserToDeleteRows = false;
|
---|
| 75 | this.dataGridView.AllowUserToOrderColumns = true;
|
---|
| 76 | this.dataGridView.AllowUserToResizeRows = false;
|
---|
| 77 | this.dataGridView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 78 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 79 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 80 | this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
---|
| 81 | this.dataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
|
---|
| 82 | this.NameColumn,
|
---|
| 83 | this.ValueColumn});
|
---|
| 84 | this.dataGridView.Location = new System.Drawing.Point(7, 20);
|
---|
| 85 | this.dataGridView.Name = "dataGridView";
|
---|
| 86 | this.dataGridView.ReadOnly = true;
|
---|
| 87 | this.dataGridView.RowHeadersVisible = false;
|
---|
| 88 | this.dataGridView.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
|
---|
| 89 | this.dataGridView.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.CellSelect;
|
---|
| 90 | this.dataGridView.ShowEditingIcon = false;
|
---|
| 91 | this.dataGridView.Size = new System.Drawing.Size(273, 510);
|
---|
| 92 | this.dataGridView.TabIndex = 0;
|
---|
| 93 | //
|
---|
| 94 | // NameColumn
|
---|
| 95 | //
|
---|
| 96 | this.NameColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
|
---|
| 97 | this.NameColumn.HeaderText = "Name";
|
---|
| 98 | this.NameColumn.Name = "NameColumn";
|
---|
| 99 | this.NameColumn.ReadOnly = true;
|
---|
| 100 | this.NameColumn.Width = 60;
|
---|
| 101 | //
|
---|
| 102 | // ValueColumn
|
---|
| 103 | //
|
---|
| 104 | this.ValueColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
|
---|
| 105 | this.ValueColumn.HeaderText = "Value";
|
---|
| 106 | this.ValueColumn.Name = "ValueColumn";
|
---|
| 107 | this.ValueColumn.ReadOnly = true;
|
---|
| 108 | this.ValueColumn.Width = 59;
|
---|
| 109 | //
|
---|
| 110 | // regionNameLabel
|
---|
| 111 | //
|
---|
| 112 | this.regionNameLabel.ActiveLinkColor = System.Drawing.Color.Red;
|
---|
| 113 | this.regionNameLabel.Dock = System.Windows.Forms.DockStyle.Top;
|
---|
| 114 | this.regionNameLabel.Location = new System.Drawing.Point(0, 0);
|
---|
| 115 | this.regionNameLabel.Name = "regionNameLabel";
|
---|
| 116 | this.regionNameLabel.Size = new System.Drawing.Size(292, 14);
|
---|
| 117 | this.regionNameLabel.TabIndex = 0;
|
---|
| 118 | this.regionNameLabel.TabStop = true;
|
---|
| 119 | this.regionNameLabel.Text = "AT111";
|
---|
| 120 | this.regionNameLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
|
---|
| 121 | this.regionNameLabel.Click += new System.EventHandler(this.regionNameLabel_Click);
|
---|
| 122 | //
|
---|
| 123 | // regionDescriptionLabel
|
---|
| 124 | //
|
---|
| 125 | this.regionDescriptionLabel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 126 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 127 | this.regionDescriptionLabel.Location = new System.Drawing.Point(0, 14);
|
---|
| 128 | this.regionDescriptionLabel.MaximumSize = new System.Drawing.Size(500, 13);
|
---|
| 129 | this.regionDescriptionLabel.Name = "regionDescriptionLabel";
|
---|
| 130 | this.regionDescriptionLabel.Size = new System.Drawing.Size(292, 13);
|
---|
| 131 | this.regionDescriptionLabel.TabIndex = 8;
|
---|
| 132 | this.regionDescriptionLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
|
---|
| 133 | //
|
---|
| 134 | // BioBoostRegionDetailView
|
---|
| 135 | //
|
---|
| 136 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 137 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
| 138 | this.Controls.Add(plantsGroupBox);
|
---|
| 139 | this.Controls.Add(this.regionDescriptionLabel);
|
---|
| 140 | this.Controls.Add(this.regionNameLabel);
|
---|
| 141 | this.Name = "BioBoostRegionDetailView";
|
---|
| 142 | this.Size = new System.Drawing.Size(292, 569);
|
---|
| 143 | plantsGroupBox.ResumeLayout(false);
|
---|
| 144 | ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
|
---|
| 145 | this.ResumeLayout(false);
|
---|
| 146 |
|
---|
| 147 | }
|
---|
| 148 |
|
---|
| 149 | #endregion
|
---|
| 150 |
|
---|
| 151 | private System.Windows.Forms.LinkLabel regionNameLabel;
|
---|
| 152 | private System.Windows.Forms.Label regionDescriptionLabel;
|
---|
| 153 | private System.Windows.Forms.DataGridView dataGridView;
|
---|
| 154 | private System.Windows.Forms.DataGridViewTextBoxColumn NameColumn;
|
---|
| 155 | private System.Windows.Forms.DataGridViewTextBoxColumn ValueColumn;
|
---|
| 156 | }
|
---|
| 157 | }
|
---|