Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 6140 was 6140, checked in by epitzer, 13 years ago

Add new CachedExternalEvaluator with replaceable permanent cache of all evaluated solutions (#1516)

File size: 5.0 KB
Line 
1namespace HeuristicLab.Problems.ExternalEvaluation {
2  partial class EvaluationCacheView {
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 Windows Form 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.sizeLabel = new System.Windows.Forms.Label();
27      this.sizeTextBox = new System.Windows.Forms.TextBox();
28      this.hitsTextBox = new System.Windows.Forms.TextBox();
29      this.hitsLabel = new System.Windows.Forms.Label();
30      this.clearButton = new System.Windows.Forms.Button();
31      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
32      this.SuspendLayout();
33      //
34      // nameTextBox
35      //
36      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
37      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
38      //
39      // sizeLabel
40      //
41      this.sizeLabel.AutoSize = true;
42      this.sizeLabel.Location = new System.Drawing.Point(6, 30);
43      this.sizeLabel.Name = "sizeLabel";
44      this.sizeLabel.Size = new System.Drawing.Size(30, 13);
45      this.sizeLabel.TabIndex = 3;
46      this.sizeLabel.Text = "Size:";
47      //
48      // sizeTextBox
49      //
50      this.sizeTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
51            | System.Windows.Forms.AnchorStyles.Right)));
52      this.sizeTextBox.Location = new System.Drawing.Point(58, 27);
53      this.sizeTextBox.Name = "sizeTextBox";
54      this.sizeTextBox.ReadOnly = true;
55      this.sizeTextBox.Size = new System.Drawing.Size(290, 20);
56      this.sizeTextBox.TabIndex = 4;
57      //
58      // hitsTextBox
59      //
60      this.hitsTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
61            | System.Windows.Forms.AnchorStyles.Right)));
62      this.hitsTextBox.Location = new System.Drawing.Point(58, 54);
63      this.hitsTextBox.Name = "hitsTextBox";
64      this.hitsTextBox.ReadOnly = true;
65      this.hitsTextBox.Size = new System.Drawing.Size(290, 20);
66      this.hitsTextBox.TabIndex = 5;
67      //
68      // hitsLabel
69      //
70      this.hitsLabel.AutoSize = true;
71      this.hitsLabel.Location = new System.Drawing.Point(6, 57);
72      this.hitsLabel.Name = "hitsLabel";
73      this.hitsLabel.Size = new System.Drawing.Size(28, 13);
74      this.hitsLabel.TabIndex = 6;
75      this.hitsLabel.Text = "Hits:";
76      //
77      // clearButton
78      //
79      this.clearButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
80      this.clearButton.Location = new System.Drawing.Point(273, 80);
81      this.clearButton.Name = "clearButton";
82      this.clearButton.Size = new System.Drawing.Size(75, 23);
83      this.clearButton.TabIndex = 7;
84      this.clearButton.Text = "Clear";
85      this.clearButton.UseVisualStyleBackColor = true;
86      this.clearButton.Click += new System.EventHandler(this.clearButton_Click);
87      //
88      // EvaluationCacheView
89      //
90      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
91      this.Controls.Add(this.hitsTextBox);
92      this.Controls.Add(this.sizeTextBox);
93      this.Controls.Add(this.sizeLabel);
94      this.Controls.Add(this.clearButton);
95      this.Controls.Add(this.hitsLabel);
96      this.Name = "EvaluationCacheView";
97      this.Size = new System.Drawing.Size(351, 107);
98      this.Controls.SetChildIndex(this.hitsLabel, 0);
99      this.Controls.SetChildIndex(this.clearButton, 0);
100      this.Controls.SetChildIndex(this.sizeLabel, 0);
101      this.Controls.SetChildIndex(this.sizeTextBox, 0);
102      this.Controls.SetChildIndex(this.hitsTextBox, 0);
103      this.Controls.SetChildIndex(this.nameLabel, 0);
104      this.Controls.SetChildIndex(this.nameTextBox, 0);
105      this.Controls.SetChildIndex(this.infoLabel, 0);
106      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
107      this.ResumeLayout(false);
108      this.PerformLayout();
109
110    }
111
112    #endregion
113
114    private System.Windows.Forms.Label sizeLabel;
115    private System.Windows.Forms.TextBox sizeTextBox;
116    private System.Windows.Forms.TextBox hitsTextBox;
117    private System.Windows.Forms.Label hitsLabel;
118    private System.Windows.Forms.Button clearButton;
119  }
120}
Note: See TracBrowser for help on using the repository browser.