Free cookie consent management tool by TermsFeed Policy Generator

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

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

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

File size: 6.7 KB
Line 
1namespace HeuristicLab.BioBoost.Views {
2  partial class BioBoostSolutionCostsView {
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      this.costsGroupBox = new System.Windows.Forms.GroupBox();
27      this.costsTextBox1 = new System.Windows.Forms.TextBox();
28      this.costsTextBox1Label = new System.Windows.Forms.Label();
29      this.costsDataGridView = new System.Windows.Forms.DataGridView();
30      this.costsColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
31      this.costsColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
32      this.costsGroupBox.SuspendLayout();
33      ((System.ComponentModel.ISupportInitialize)(this.costsDataGridView)).BeginInit();
34      this.SuspendLayout();
35      //
36      // costsGroupBox
37      //
38      this.costsGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
39            | System.Windows.Forms.AnchorStyles.Left)
40            | System.Windows.Forms.AnchorStyles.Right)));
41      this.costsGroupBox.Controls.Add(this.costsTextBox1);
42      this.costsGroupBox.Controls.Add(this.costsTextBox1Label);
43      this.costsGroupBox.Controls.Add(this.costsDataGridView);
44      this.costsGroupBox.Location = new System.Drawing.Point(0, 0);
45      this.costsGroupBox.Name = "costsGroupBox";
46      this.costsGroupBox.Size = new System.Drawing.Size(349, 417);
47      this.costsGroupBox.TabIndex = 3;
48      this.costsGroupBox.TabStop = false;
49      this.costsGroupBox.Text = "Costs Summary";
50      //
51      // costsTextBox1
52      //
53      this.costsTextBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
54      this.costsTextBox1.BackColor = System.Drawing.SystemColors.Window;
55      this.costsTextBox1.BorderStyle = System.Windows.Forms.BorderStyle.None;
56      this.costsTextBox1.Font = new System.Drawing.Font("Lucida Console", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
57      this.costsTextBox1.Location = new System.Drawing.Point(209, 399);
58      this.costsTextBox1.Name = "costsTextBox1";
59      this.costsTextBox1.ReadOnly = true;
60      this.costsTextBox1.Size = new System.Drawing.Size(134, 11);
61      this.costsTextBox1.TabIndex = 4;
62      this.costsTextBox1.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
63      //
64      // costsTextBox1Label
65      //
66      this.costsTextBox1Label.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
67      this.costsTextBox1Label.AutoSize = true;
68      this.costsTextBox1Label.Location = new System.Drawing.Point(120, 397);
69      this.costsTextBox1Label.Name = "costsTextBox1Label";
70      this.costsTextBox1Label.Size = new System.Drawing.Size(89, 13);
71      this.costsTextBox1Label.TabIndex = 3;
72      this.costsTextBox1Label.Text = "Total Costs (€/a):";
73      //
74      // costsDataGridView
75      //
76      this.costsDataGridView.AllowUserToAddRows = false;
77      this.costsDataGridView.AllowUserToDeleteRows = false;
78      this.costsDataGridView.AllowUserToResizeRows = false;
79      this.costsDataGridView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
80            | System.Windows.Forms.AnchorStyles.Left)
81            | System.Windows.Forms.AnchorStyles.Right)));
82      this.costsDataGridView.BackgroundColor = System.Drawing.SystemColors.Window;
83      this.costsDataGridView.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
84      this.costsDataGridView.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.None;
85      this.costsDataGridView.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.None;
86      this.costsDataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
87      this.costsDataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
88            this.costsColumn1,
89            this.costsColumn2});
90      this.costsDataGridView.Location = new System.Drawing.Point(6, 19);
91      this.costsDataGridView.Name = "costsDataGridView";
92      this.costsDataGridView.ReadOnly = true;
93      this.costsDataGridView.RowHeadersVisible = false;
94      this.costsDataGridView.RowTemplate.Height = 16;
95      this.costsDataGridView.Size = new System.Drawing.Size(337, 374);
96      this.costsDataGridView.TabIndex = 0;
97      //
98      // costsColumn1
99      //
100      this.costsColumn1.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
101      this.costsColumn1.HeaderText = "Item";
102      this.costsColumn1.Name = "costsColumn1";
103      this.costsColumn1.ReadOnly = true;
104      //
105      // costsColumn2
106      //
107      this.costsColumn2.HeaderText = "€/a";
108      this.costsColumn2.MinimumWidth = 50;
109      this.costsColumn2.Name = "costsColumn2";
110      this.costsColumn2.ReadOnly = true;
111      this.costsColumn2.Width = 120;
112      //
113      // BioBoostSolutionCostsView
114      //
115      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
116      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
117      this.Controls.Add(this.costsGroupBox);
118      this.Name = "BioBoostSolutionCostsView";
119      this.Size = new System.Drawing.Size(349, 417);
120      this.costsGroupBox.ResumeLayout(false);
121      this.costsGroupBox.PerformLayout();
122      ((System.ComponentModel.ISupportInitialize)(this.costsDataGridView)).EndInit();
123      this.ResumeLayout(false);
124
125    }
126
127    #endregion
128
129    private System.Windows.Forms.GroupBox costsGroupBox;
130    private System.Windows.Forms.DataGridView costsDataGridView;
131    private System.Windows.Forms.DataGridViewTextBoxColumn costsColumn1;
132    private System.Windows.Forms.DataGridViewTextBoxColumn costsColumn2;
133    private System.Windows.Forms.TextBox costsTextBox1;
134    private System.Windows.Forms.Label costsTextBox1Label;
135
136  }
137}
Note: See TracBrowser for help on using the repository browser.