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.Problems.ExternalEvaluation.Views {
|
---|
23 | partial class EvaluationCacheView {
|
---|
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 | this.hits_sizeLabel = new System.Windows.Forms.Label();
|
---|
48 | this.hits_sizeTextBox = new System.Windows.Forms.TextBox();
|
---|
49 | this.clearButton = new System.Windows.Forms.Button();
|
---|
50 | this.saveFileDialog = new System.Windows.Forms.SaveFileDialog();
|
---|
51 | this.saveButton = new System.Windows.Forms.Button();
|
---|
52 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
|
---|
53 | this.SuspendLayout();
|
---|
54 | //
|
---|
55 | // parameterCollectionView
|
---|
56 | //
|
---|
57 | this.parameterCollectionView.Location = new System.Drawing.Point(0, 52);
|
---|
58 | this.parameterCollectionView.Size = new System.Drawing.Size(490, 301);
|
---|
59 | //
|
---|
60 | // nameTextBox
|
---|
61 | //
|
---|
62 | this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
|
---|
63 | this.errorProvider.SetIconPadding(this.nameTextBox, 2);
|
---|
64 | //
|
---|
65 | // hits_sizeLabel
|
---|
66 | //
|
---|
67 | this.hits_sizeLabel.AutoSize = true;
|
---|
68 | this.hits_sizeLabel.Location = new System.Drawing.Point(3, 29);
|
---|
69 | this.hits_sizeLabel.Name = "hits_sizeLabel";
|
---|
70 | this.hits_sizeLabel.Size = new System.Drawing.Size(53, 13);
|
---|
71 | this.hits_sizeLabel.TabIndex = 4;
|
---|
72 | this.hits_sizeLabel.Text = "Hits/Size:";
|
---|
73 | //
|
---|
74 | // hits_sizeTextBox
|
---|
75 | //
|
---|
76 | this.hits_sizeTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
77 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
78 | this.hits_sizeTextBox.Location = new System.Drawing.Point(59, 26);
|
---|
79 | this.hits_sizeTextBox.Name = "hits_sizeTextBox";
|
---|
80 | this.hits_sizeTextBox.ReadOnly = true;
|
---|
81 | this.hits_sizeTextBox.Size = new System.Drawing.Size(319, 20);
|
---|
82 | this.hits_sizeTextBox.TabIndex = 5;
|
---|
83 | //
|
---|
84 | // clearButton
|
---|
85 | //
|
---|
86 | this.clearButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
---|
87 | this.clearButton.Location = new System.Drawing.Point(444, 24);
|
---|
88 | this.clearButton.Name = "clearButton";
|
---|
89 | this.clearButton.Size = new System.Drawing.Size(43, 23);
|
---|
90 | this.clearButton.TabIndex = 6;
|
---|
91 | this.clearButton.Text = "Clear";
|
---|
92 | this.toolTip.SetToolTip(this.clearButton, "Clear");
|
---|
93 | this.clearButton.UseVisualStyleBackColor = true;
|
---|
94 | this.clearButton.Click += new System.EventHandler(this.clearButton_Click);
|
---|
95 | //
|
---|
96 | // saveFileDialog
|
---|
97 | //
|
---|
98 | this.saveFileDialog.DefaultExt = "csv";
|
---|
99 | this.saveFileDialog.Filter = "CSV Files|*.csv|All Files|*.*";
|
---|
100 | this.saveFileDialog.RestoreDirectory = true;
|
---|
101 | this.saveFileDialog.Title = "Save Cache";
|
---|
102 | //
|
---|
103 | // saveButton
|
---|
104 | //
|
---|
105 | this.saveButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
---|
106 | this.saveButton.Location = new System.Drawing.Point(384, 23);
|
---|
107 | this.saveButton.Name = "saveButton";
|
---|
108 | this.saveButton.Size = new System.Drawing.Size(54, 23);
|
---|
109 | this.saveButton.TabIndex = 8;
|
---|
110 | this.saveButton.Text = "Save...";
|
---|
111 | this.saveButton.UseVisualStyleBackColor = true;
|
---|
112 | this.saveButton.Click += new System.EventHandler(this.saveButton_Click);
|
---|
113 | //
|
---|
114 | // EvaluationCacheView
|
---|
115 | //
|
---|
116 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
117 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
|
---|
118 | this.Controls.Add(this.hits_sizeTextBox);
|
---|
119 | this.Controls.Add(this.hits_sizeLabel);
|
---|
120 | this.Controls.Add(this.clearButton);
|
---|
121 | this.Controls.Add(this.saveButton);
|
---|
122 | this.Name = "EvaluationCacheView";
|
---|
123 | this.Controls.SetChildIndex(this.saveButton, 0);
|
---|
124 | this.Controls.SetChildIndex(this.clearButton, 0);
|
---|
125 | this.Controls.SetChildIndex(this.hits_sizeLabel, 0);
|
---|
126 | this.Controls.SetChildIndex(this.hits_sizeTextBox, 0);
|
---|
127 | this.Controls.SetChildIndex(this.infoLabel, 0);
|
---|
128 | this.Controls.SetChildIndex(this.nameTextBox, 0);
|
---|
129 | this.Controls.SetChildIndex(this.nameLabel, 0);
|
---|
130 | this.Controls.SetChildIndex(this.parameterCollectionView, 0);
|
---|
131 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
|
---|
132 | this.ResumeLayout(false);
|
---|
133 | this.PerformLayout();
|
---|
134 |
|
---|
135 | }
|
---|
136 |
|
---|
137 | #endregion
|
---|
138 |
|
---|
139 | private System.Windows.Forms.Label hits_sizeLabel;
|
---|
140 | private System.Windows.Forms.TextBox hits_sizeTextBox;
|
---|
141 | private System.Windows.Forms.Button clearButton;
|
---|
142 | private System.Windows.Forms.SaveFileDialog saveFileDialog;
|
---|
143 | private System.Windows.Forms.Button saveButton;
|
---|
144 | }
|
---|
145 | }
|
---|