1 | using HeuristicLab.Optimization;
|
---|
2 | using HeuristicLab.Data;
|
---|
3 | namespace HeuristicLab.Problems.MetaOptimization.Views {
|
---|
4 | partial class RunCollectionItemDictionaryView {
|
---|
5 | /// <summary>
|
---|
6 | /// Required designer variable.
|
---|
7 | /// </summary>
|
---|
8 | private System.ComponentModel.IContainer components = null;
|
---|
9 |
|
---|
10 | /// <summary>
|
---|
11 | /// Clean up any resources being used.
|
---|
12 | /// </summary>
|
---|
13 | /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
---|
14 | protected override void Dispose(bool disposing) {
|
---|
15 | if (disposing && (components != null)) {
|
---|
16 | components.Dispose();
|
---|
17 | }
|
---|
18 | base.Dispose(disposing);
|
---|
19 | }
|
---|
20 |
|
---|
21 | #region Component Designer generated code
|
---|
22 |
|
---|
23 | /// <summary>
|
---|
24 | /// Required method for Designer support - do not modify
|
---|
25 | /// the contents of this method with the code editor.
|
---|
26 | /// </summary>
|
---|
27 | private void InitializeComponent() {
|
---|
28 | this.tabControl = new System.Windows.Forms.TabControl();
|
---|
29 | this.itemsTabPage = new System.Windows.Forms.TabPage();
|
---|
30 | this.runsTabPage = new System.Windows.Forms.TabPage();
|
---|
31 | this.runCollectionView = new HeuristicLab.Optimization.Views.RunCollectionView();
|
---|
32 | this.runCollectionDictionaryView = new HeuristicLab.Problems.MetaOptimization.Views.RunCollectionDictionaryView();
|
---|
33 | this.tabControl.SuspendLayout();
|
---|
34 | this.itemsTabPage.SuspendLayout();
|
---|
35 | this.runsTabPage.SuspendLayout();
|
---|
36 | this.SuspendLayout();
|
---|
37 | //
|
---|
38 | // tabControl
|
---|
39 | //
|
---|
40 | this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
41 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
42 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
43 | this.tabControl.Controls.Add(this.itemsTabPage);
|
---|
44 | this.tabControl.Controls.Add(this.runsTabPage);
|
---|
45 | this.tabControl.Location = new System.Drawing.Point(0, 0);
|
---|
46 | this.tabControl.Name = "tabControl";
|
---|
47 | this.tabControl.SelectedIndex = 0;
|
---|
48 | this.tabControl.Size = new System.Drawing.Size(758, 450);
|
---|
49 | this.tabControl.TabIndex = 0;
|
---|
50 | //
|
---|
51 | // itemsTabPage
|
---|
52 | //
|
---|
53 | this.itemsTabPage.Controls.Add(this.runCollectionDictionaryView);
|
---|
54 | this.itemsTabPage.Location = new System.Drawing.Point(4, 22);
|
---|
55 | this.itemsTabPage.Name = "itemsTabPage";
|
---|
56 | this.itemsTabPage.Padding = new System.Windows.Forms.Padding(3);
|
---|
57 | this.itemsTabPage.Size = new System.Drawing.Size(750, 424);
|
---|
58 | this.itemsTabPage.TabIndex = 0;
|
---|
59 | this.itemsTabPage.Text = "Items";
|
---|
60 | this.itemsTabPage.UseVisualStyleBackColor = true;
|
---|
61 | //
|
---|
62 | // runsTabPage
|
---|
63 | //
|
---|
64 | this.runsTabPage.Controls.Add(this.runCollectionView);
|
---|
65 | this.runsTabPage.Location = new System.Drawing.Point(4, 22);
|
---|
66 | this.runsTabPage.Name = "runsTabPage";
|
---|
67 | this.runsTabPage.Padding = new System.Windows.Forms.Padding(3);
|
---|
68 | this.runsTabPage.Size = new System.Drawing.Size(750, 424);
|
---|
69 | this.runsTabPage.TabIndex = 1;
|
---|
70 | this.runsTabPage.Text = "Runs";
|
---|
71 | this.runsTabPage.UseVisualStyleBackColor = true;
|
---|
72 | //
|
---|
73 | // runCollectionView
|
---|
74 | //
|
---|
75 | this.runCollectionView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
76 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
77 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
78 | this.runCollectionView.Caption = "RunCollection View";
|
---|
79 | this.runCollectionView.Content = null;
|
---|
80 | this.runCollectionView.Location = new System.Drawing.Point(3, 3);
|
---|
81 | this.runCollectionView.Name = "runCollectionView";
|
---|
82 | this.runCollectionView.ReadOnly = false;
|
---|
83 | this.runCollectionView.Size = new System.Drawing.Size(744, 418);
|
---|
84 | this.runCollectionView.TabIndex = 0;
|
---|
85 | //
|
---|
86 | // runCollectionDictionaryView
|
---|
87 | //
|
---|
88 | this.runCollectionDictionaryView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
89 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
90 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
91 | this.runCollectionDictionaryView.Caption = "RunCollectionDictionaryView";
|
---|
92 | this.runCollectionDictionaryView.Content = null;
|
---|
93 | this.runCollectionDictionaryView.Location = new System.Drawing.Point(-4, 0);
|
---|
94 | this.runCollectionDictionaryView.Name = "runCollectionDictionaryView";
|
---|
95 | this.runCollectionDictionaryView.ReadOnly = false;
|
---|
96 | this.runCollectionDictionaryView.Size = new System.Drawing.Size(751, 421);
|
---|
97 | this.runCollectionDictionaryView.TabIndex = 0;
|
---|
98 | //
|
---|
99 | // RunCollectionItemDictionaryView
|
---|
100 | //
|
---|
101 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
102 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
|
---|
103 | this.Controls.Add(this.tabControl);
|
---|
104 | this.Name = "RunCollectionItemDictionaryView";
|
---|
105 | this.Size = new System.Drawing.Size(758, 450);
|
---|
106 | this.tabControl.ResumeLayout(false);
|
---|
107 | this.itemsTabPage.ResumeLayout(false);
|
---|
108 | this.runsTabPage.ResumeLayout(false);
|
---|
109 | this.ResumeLayout(false);
|
---|
110 |
|
---|
111 | }
|
---|
112 |
|
---|
113 | #endregion
|
---|
114 |
|
---|
115 | private System.Windows.Forms.TabControl tabControl;
|
---|
116 | private System.Windows.Forms.TabPage itemsTabPage;
|
---|
117 | private System.Windows.Forms.TabPage runsTabPage;
|
---|
118 | private RunCollectionDictionaryView runCollectionDictionaryView;
|
---|
119 | private Optimization.Views.RunCollectionView runCollectionView;
|
---|
120 | }
|
---|
121 | }
|
---|