Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.BioBoost/HeuristicLab.Problems.BioBoost.Views/3.3/BioBoostRegionDetailView.Designer.cs @ 13072

Last change on this file since 13072 was 13072, checked in by gkronber, 9 years ago

#2499: added code from HeuristicLab.BioBoost.Views (from private repository) nothing much has been changed

File size: 6.4 KB
Line 
1namespace HeuristicLab.BioBoost.Views {
2  partial class BioBoostRegionDetailView {
3    /// <summary>
4    /// Required designer variable.
5    /// </summary>
6    private System.ComponentModel.IContainer components = null;
7
8    /// <summary>
9    /// Clean up any resources being used.
10    /// </summary>
11    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
12    protected override void Dispose(bool disposing) {
13      if (disposing && (components != null)) {
14        components.Dispose();
15      }
16      base.Dispose(disposing);
17    }
18
19    #region Component Designer generated code
20
21    /// <summary>
22    /// Required method for Designer support - do not modify
23    /// the contents of this method with the code editor.
24    /// </summary>
25    private void InitializeComponent() {
26      System.Windows.Forms.GroupBox plantsGroupBox;
27      this.dataGridView = new System.Windows.Forms.DataGridView();
28      this.NameColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
29      this.ValueColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
30      this.regionNameLabel = new System.Windows.Forms.LinkLabel();
31      this.regionDescriptionLabel = new System.Windows.Forms.Label();
32      plantsGroupBox = new System.Windows.Forms.GroupBox();
33      plantsGroupBox.SuspendLayout();
34      ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
35      this.SuspendLayout();
36      //
37      // plantsGroupBox
38      //
39      plantsGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
40            | System.Windows.Forms.AnchorStyles.Left)
41            | System.Windows.Forms.AnchorStyles.Right)));
42      plantsGroupBox.Controls.Add(this.dataGridView);
43      plantsGroupBox.Location = new System.Drawing.Point(3, 30);
44      plantsGroupBox.Name = "plantsGroupBox";
45      plantsGroupBox.Size = new System.Drawing.Size(286, 536);
46      plantsGroupBox.TabIndex = 4;
47      plantsGroupBox.TabStop = false;
48      plantsGroupBox.Text = "Regional Values";
49      //
50      // dataGridView
51      //
52      this.dataGridView.AllowUserToAddRows = false;
53      this.dataGridView.AllowUserToDeleteRows = false;
54      this.dataGridView.AllowUserToOrderColumns = true;
55      this.dataGridView.AllowUserToResizeRows = false;
56      this.dataGridView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
57            | System.Windows.Forms.AnchorStyles.Left)
58            | System.Windows.Forms.AnchorStyles.Right)));
59      this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
60      this.dataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
61            this.NameColumn,
62            this.ValueColumn});
63      this.dataGridView.Location = new System.Drawing.Point(7, 20);
64      this.dataGridView.Name = "dataGridView";
65      this.dataGridView.ReadOnly = true;
66      this.dataGridView.RowHeadersVisible = false;
67      this.dataGridView.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
68      this.dataGridView.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.CellSelect;
69      this.dataGridView.ShowEditingIcon = false;
70      this.dataGridView.Size = new System.Drawing.Size(273, 510);
71      this.dataGridView.TabIndex = 0;
72      //
73      // NameColumn
74      //
75      this.NameColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
76      this.NameColumn.HeaderText = "Name";
77      this.NameColumn.Name = "NameColumn";
78      this.NameColumn.ReadOnly = true;
79      this.NameColumn.Width = 60;
80      //
81      // ValueColumn
82      //
83      this.ValueColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
84      this.ValueColumn.HeaderText = "Value";
85      this.ValueColumn.Name = "ValueColumn";
86      this.ValueColumn.ReadOnly = true;
87      this.ValueColumn.Width = 59;
88      //
89      // regionNameLabel
90      //
91      this.regionNameLabel.ActiveLinkColor = System.Drawing.Color.Red;
92      this.regionNameLabel.Dock = System.Windows.Forms.DockStyle.Top;
93      this.regionNameLabel.Location = new System.Drawing.Point(0, 0);
94      this.regionNameLabel.Name = "regionNameLabel";
95      this.regionNameLabel.Size = new System.Drawing.Size(292, 14);
96      this.regionNameLabel.TabIndex = 0;
97      this.regionNameLabel.TabStop = true;
98      this.regionNameLabel.Text = "AT111";
99      this.regionNameLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
100      this.regionNameLabel.Click += new System.EventHandler(this.regionNameLabel_Click);
101      //
102      // regionDescriptionLabel
103      //
104      this.regionDescriptionLabel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
105            | System.Windows.Forms.AnchorStyles.Right)));
106      this.regionDescriptionLabel.Location = new System.Drawing.Point(0, 14);
107      this.regionDescriptionLabel.MaximumSize = new System.Drawing.Size(500, 13);
108      this.regionDescriptionLabel.Name = "regionDescriptionLabel";
109      this.regionDescriptionLabel.Size = new System.Drawing.Size(292, 13);
110      this.regionDescriptionLabel.TabIndex = 8;
111      this.regionDescriptionLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
112      //
113      // BioBoostRegionDetailView
114      //
115      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
116      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
117      this.Controls.Add(plantsGroupBox);
118      this.Controls.Add(this.regionDescriptionLabel);
119      this.Controls.Add(this.regionNameLabel);
120      this.Name = "BioBoostRegionDetailView";
121      this.Size = new System.Drawing.Size(292, 569);
122      plantsGroupBox.ResumeLayout(false);
123      ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
124      this.ResumeLayout(false);
125
126    }
127
128    #endregion
129
130    private System.Windows.Forms.LinkLabel regionNameLabel;
131    private System.Windows.Forms.Label regionDescriptionLabel;
132    private System.Windows.Forms.DataGridView dataGridView;
133    private System.Windows.Forms.DataGridViewTextBoxColumn NameColumn;
134    private System.Windows.Forms.DataGridViewTextBoxColumn ValueColumn;
135  }
136}
Note: See TracBrowser for help on using the repository browser.