Free cookie consent management tool by TermsFeed Policy Generator

source: branches/histogram/HeuristicLab.Problems.ExternalEvaluation.Views/3.3/EvaluationCacheView.Designer.cs @ 6244

Last change on this file since 6244 was 6195, checked in by abeham, 13 years ago

#1465

  • updated branch with latest version of trunk
File size: 4.2 KB
Line 
1namespace HeuristicLab.Problems.ExternalEvaluation.Views {
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 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      this.hits_sizeLabel = new System.Windows.Forms.Label();
27      this.hits_sizeTextBox = new System.Windows.Forms.TextBox();
28      this.clearButton = new System.Windows.Forms.Button();
29      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
30      this.SuspendLayout();
31      //
32      // parameterCollectionView
33      //
34      this.parameterCollectionView.Location = new System.Drawing.Point(0, 52);
35      this.parameterCollectionView.Size = new System.Drawing.Size(490, 301);
36      //
37      // nameTextBox
38      //
39      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
40      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
41      //
42      // hits_sizeLabel
43      //
44      this.hits_sizeLabel.AutoSize = true;
45      this.hits_sizeLabel.Location = new System.Drawing.Point(3, 29);
46      this.hits_sizeLabel.Name = "hits_sizeLabel";
47      this.hits_sizeLabel.Size = new System.Drawing.Size(53, 13);
48      this.hits_sizeLabel.TabIndex = 4;
49      this.hits_sizeLabel.Text = "Hits/Size:";
50      //
51      // hits_sizeTextBox
52      //
53      this.hits_sizeTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
54            | System.Windows.Forms.AnchorStyles.Right)));
55      this.hits_sizeTextBox.Location = new System.Drawing.Point(59, 26);
56      this.hits_sizeTextBox.Name = "hits_sizeTextBox";
57      this.hits_sizeTextBox.ReadOnly = true;
58      this.hits_sizeTextBox.Size = new System.Drawing.Size(379, 20);
59      this.hits_sizeTextBox.TabIndex = 5;
60      //
61      // clearButton
62      //
63      this.clearButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
64      this.clearButton.Location = new System.Drawing.Point(444, 24);
65      this.clearButton.Name = "clearButton";
66      this.clearButton.Size = new System.Drawing.Size(43, 23);
67      this.clearButton.TabIndex = 6;
68      this.clearButton.Text = "Clear";
69      this.toolTip.SetToolTip(this.clearButton, "Clear");
70      this.clearButton.UseVisualStyleBackColor = true;
71      this.clearButton.Click += new System.EventHandler(this.clearButton_Click);
72      //
73      // EvaluationCacheView
74      //
75      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
76      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
77      this.Controls.Add(this.hits_sizeTextBox);
78      this.Controls.Add(this.hits_sizeLabel);
79      this.Controls.Add(this.clearButton);
80      this.Name = "EvaluationCacheView";
81      this.Controls.SetChildIndex(this.clearButton, 0);
82      this.Controls.SetChildIndex(this.hits_sizeLabel, 0);
83      this.Controls.SetChildIndex(this.hits_sizeTextBox, 0);
84      this.Controls.SetChildIndex(this.infoLabel, 0);
85      this.Controls.SetChildIndex(this.nameTextBox, 0);
86      this.Controls.SetChildIndex(this.nameLabel, 0);
87      this.Controls.SetChildIndex(this.parameterCollectionView, 0);
88      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
89      this.ResumeLayout(false);
90      this.PerformLayout();
91
92    }
93
94    #endregion
95
96    private System.Windows.Forms.Label hits_sizeLabel;
97    private System.Windows.Forms.TextBox hits_sizeTextBox;
98    private System.Windows.Forms.Button clearButton;
99  }
100}
Note: See TracBrowser for help on using the repository browser.