Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.ExternalEvaluation.Views/3.3/EvaluationCacheView.Designer.cs @ 12006

Last change on this file since 12006 was 11171, checked in by ascheibe, 10 years ago

#2115 merged r11170 (copyright update) into trunk

File size: 6.2 KB
RevLine 
[6519]1#region License Information
2/* HeuristicLab
[11171]3 * Copyright (C) 2002-2014 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
[6519]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
22namespace HeuristicLab.Problems.ExternalEvaluation.Views {
[6140]23  partial class EvaluationCacheView {
[6169]24    /// <summary>
[6140]25    /// Required designer variable.
26    /// </summary>
27    private System.ComponentModel.IContainer components = null;
28
[6169]29    /// <summary>
[6140]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
[6169]40    #region Component Designer generated code
[6140]41
[6169]42    /// <summary>
43    /// Required method for Designer support - do not modify
[6140]44    /// the contents of this method with the code editor.
45    /// </summary>
46    private void InitializeComponent() {
[6169]47      this.hits_sizeLabel = new System.Windows.Forms.Label();
48      this.hits_sizeTextBox = new System.Windows.Forms.TextBox();
[6140]49      this.clearButton = new System.Windows.Forms.Button();
[6265]50      this.saveFileDialog = new System.Windows.Forms.SaveFileDialog();
51      this.saveButton = new System.Windows.Forms.Button();
[6140]52      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
53      this.SuspendLayout();
54      //
[6169]55      // parameterCollectionView
56      //
57      this.parameterCollectionView.Location = new System.Drawing.Point(0, 52);
58      this.parameterCollectionView.Size = new System.Drawing.Size(490, 301);
59      //
[6140]60      // nameTextBox
61      //
62      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
63      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
64      //
[6169]65      // hits_sizeLabel
[6140]66      //
[6169]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:";
[6140]73      //
[6169]74      // hits_sizeTextBox
[6140]75      //
[6519]76      this.hits_sizeTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
[6140]77            | System.Windows.Forms.AnchorStyles.Right)));
[6169]78      this.hits_sizeTextBox.Location = new System.Drawing.Point(59, 26);
79      this.hits_sizeTextBox.Name = "hits_sizeTextBox";
80      this.hits_sizeTextBox.ReadOnly = true;
[6265]81      this.hits_sizeTextBox.Size = new System.Drawing.Size(319, 20);
[6169]82      this.hits_sizeTextBox.TabIndex = 5;
[6140]83      //
84      // clearButton
85      //
86      this.clearButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
[6169]87      this.clearButton.Location = new System.Drawing.Point(444, 24);
[6140]88      this.clearButton.Name = "clearButton";
[6169]89      this.clearButton.Size = new System.Drawing.Size(43, 23);
90      this.clearButton.TabIndex = 6;
[6140]91      this.clearButton.Text = "Clear";
[6169]92      this.toolTip.SetToolTip(this.clearButton, "Clear");
[6140]93      this.clearButton.UseVisualStyleBackColor = true;
94      this.clearButton.Click += new System.EventHandler(this.clearButton_Click);
95      //
[6265]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      //
[6140]114      // EvaluationCacheView
115      //
116      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
[7967]117      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
[6169]118      this.Controls.Add(this.hits_sizeTextBox);
119      this.Controls.Add(this.hits_sizeLabel);
[6140]120      this.Controls.Add(this.clearButton);
[6265]121      this.Controls.Add(this.saveButton);
[6140]122      this.Name = "EvaluationCacheView";
[6265]123      this.Controls.SetChildIndex(this.saveButton, 0);
[6140]124      this.Controls.SetChildIndex(this.clearButton, 0);
[6169]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);
[6140]129      this.Controls.SetChildIndex(this.nameLabel, 0);
[6169]130      this.Controls.SetChildIndex(this.parameterCollectionView, 0);
[6140]131      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
132      this.ResumeLayout(false);
133      this.PerformLayout();
134
135    }
136
137    #endregion
138
[6169]139    private System.Windows.Forms.Label hits_sizeLabel;
140    private System.Windows.Forms.TextBox hits_sizeTextBox;
[6140]141    private System.Windows.Forms.Button clearButton;
[6265]142    private System.Windows.Forms.SaveFileDialog saveFileDialog;
143    private System.Windows.Forms.Button saveButton;
[6140]144  }
145}
Note: See TracBrowser for help on using the repository browser.