Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.BioBoost/HeuristicLab.Problems.BioBoost.Views/3.3/BioBoostSolutionDetailView.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: 5.8 KB
Line 
1namespace HeuristicLab.BioBoost.Views {
2  partial class BioBoostSolutionDetailView {
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      System.Windows.Forms.TreeNode treeNode1 = new System.Windows.Forms.TreeNode("AT111 (100t/a)");
28      System.Windows.Forms.TreeNode treeNode2 = new System.Windows.Forms.TreeNode("AT112 (200t/a)");
29      System.Windows.Forms.TreeNode treeNode3 = new System.Windows.Forms.TreeNode("FP (1000t/a)", new System.Windows.Forms.TreeNode[] {
30            treeNode1,
31            treeNode2});
32      System.Windows.Forms.TreeNode treeNode4 = new System.Windows.Forms.TreeNode("HTC");
33      System.Windows.Forms.TreeNode treeNode5 = new System.Windows.Forms.TreeNode("CP");
34      this.plantsTreeView = new System.Windows.Forms.TreeView();
35      this.regionNameLabel = new System.Windows.Forms.LinkLabel();
36      this.regionDescriptionLabel = new System.Windows.Forms.Label();
37      plantsGroupBox = new System.Windows.Forms.GroupBox();
38      plantsGroupBox.SuspendLayout();
39      this.SuspendLayout();
40      //
41      // plantsGroupBox
42      //
43      plantsGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
44            | System.Windows.Forms.AnchorStyles.Left)
45            | System.Windows.Forms.AnchorStyles.Right)));
46      plantsGroupBox.Controls.Add(this.plantsTreeView);
47      plantsGroupBox.Location = new System.Drawing.Point(3, 30);
48      plantsGroupBox.Name = "plantsGroupBox";
49      plantsGroupBox.Size = new System.Drawing.Size(286, 536);
50      plantsGroupBox.TabIndex = 4;
51      plantsGroupBox.TabStop = false;
52      plantsGroupBox.Text = "Plant Configurations";
53      //
54      // plantsTreeView
55      //
56      this.plantsTreeView.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.plantsTreeView.Font = new System.Drawing.Font("Lucida Console", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
60      this.plantsTreeView.HotTracking = true;
61      this.plantsTreeView.Location = new System.Drawing.Point(7, 20);
62      this.plantsTreeView.Name = "plantsTreeView";
63      treeNode1.Name = "Node3";
64      treeNode1.Text = "AT111 (100t/a)";
65      treeNode2.Name = "AT112";
66      treeNode2.Text = "AT112 (200t/a)";
67      treeNode3.Name = "FP";
68      treeNode3.Text = "FP (1000t/a)";
69      treeNode4.Name = "HTC";
70      treeNode4.Text = "HTC";
71      treeNode5.Name = "CP";
72      treeNode5.Text = "CP";
73      this.plantsTreeView.Nodes.AddRange(new System.Windows.Forms.TreeNode[] {
74            treeNode3,
75            treeNode4,
76            treeNode5});
77      this.plantsTreeView.Size = new System.Drawing.Size(273, 510);
78      this.plantsTreeView.TabIndex = 0;
79      this.plantsTreeView.NodeMouseClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.plantsTreeView_NodeMouseDoubleClick);
80      //
81      // regionNameLabel
82      //
83      this.regionNameLabel.ActiveLinkColor = System.Drawing.Color.Red;
84      this.regionNameLabel.Dock = System.Windows.Forms.DockStyle.Top;
85      this.regionNameLabel.Location = new System.Drawing.Point(0, 0);
86      this.regionNameLabel.Name = "regionNameLabel";
87      this.regionNameLabel.Size = new System.Drawing.Size(292, 14);
88      this.regionNameLabel.TabIndex = 0;
89      this.regionNameLabel.TabStop = true;
90      this.regionNameLabel.Text = "AT111";
91      this.regionNameLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
92      this.regionNameLabel.Click += new System.EventHandler(this.regionNameLabel_Click);
93      //
94      // regionDescriptionLabel
95      //
96      this.regionDescriptionLabel.Dock = System.Windows.Forms.DockStyle.Top;
97      this.regionDescriptionLabel.Location = new System.Drawing.Point(0, 14);
98      this.regionDescriptionLabel.MaximumSize = new System.Drawing.Size(500, 13);
99      this.regionDescriptionLabel.Name = "regionDescriptionLabel";
100      this.regionDescriptionLabel.Size = new System.Drawing.Size(292, 13);
101      this.regionDescriptionLabel.TabIndex = 8;
102      this.regionDescriptionLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
103      //
104      // BioBoostSolutionDetailView
105      //
106      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
107      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
108      this.Controls.Add(plantsGroupBox);
109      this.Controls.Add(this.regionDescriptionLabel);
110      this.Controls.Add(this.regionNameLabel);
111      this.Name = "BioBoostSolutionDetailView";
112      this.Size = new System.Drawing.Size(292, 569);
113      plantsGroupBox.ResumeLayout(false);
114      this.ResumeLayout(false);
115
116    }
117
118    #endregion
119
120    private System.Windows.Forms.TreeView plantsTreeView;
121    private System.Windows.Forms.LinkLabel regionNameLabel;
122    private System.Windows.Forms.Label regionDescriptionLabel;
123  }
124}
Note: See TracBrowser for help on using the repository browser.