Free cookie consent management tool by TermsFeed Policy Generator

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

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

Enable export of Cache to CSV file. (#1516)

File size: 5.4 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      this.saveFileDialog = new System.Windows.Forms.SaveFileDialog();
30      this.saveButton = new System.Windows.Forms.Button();
31      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
32      this.SuspendLayout();
33      //
34      // parameterCollectionView
35      //
36      this.parameterCollectionView.Location = new System.Drawing.Point(0, 52);
37      this.parameterCollectionView.Size = new System.Drawing.Size(490, 301);
38      //
39      // nameTextBox
40      //
41      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
42      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
43      //
44      // hits_sizeLabel
45      //
46      this.hits_sizeLabel.AutoSize = true;
47      this.hits_sizeLabel.Location = new System.Drawing.Point(3, 29);
48      this.hits_sizeLabel.Name = "hits_sizeLabel";
49      this.hits_sizeLabel.Size = new System.Drawing.Size(53, 13);
50      this.hits_sizeLabel.TabIndex = 4;
51      this.hits_sizeLabel.Text = "Hits/Size:";
52      //
53      // hits_sizeTextBox
54      //
55      this.hits_sizeTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
56            | System.Windows.Forms.AnchorStyles.Right)));
57      this.hits_sizeTextBox.Location = new System.Drawing.Point(59, 26);
58      this.hits_sizeTextBox.Name = "hits_sizeTextBox";
59      this.hits_sizeTextBox.ReadOnly = true;
60      this.hits_sizeTextBox.Size = new System.Drawing.Size(319, 20);
61      this.hits_sizeTextBox.TabIndex = 5;
62      //
63      // clearButton
64      //
65      this.clearButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
66      this.clearButton.Location = new System.Drawing.Point(444, 24);
67      this.clearButton.Name = "clearButton";
68      this.clearButton.Size = new System.Drawing.Size(43, 23);
69      this.clearButton.TabIndex = 6;
70      this.clearButton.Text = "Clear";
71      this.toolTip.SetToolTip(this.clearButton, "Clear");
72      this.clearButton.UseVisualStyleBackColor = true;
73      this.clearButton.Click += new System.EventHandler(this.clearButton_Click);
74      //
75      // saveFileDialog
76      //
77      this.saveFileDialog.DefaultExt = "csv";
78      this.saveFileDialog.Filter = "CSV Files|*.csv|All Files|*.*";
79      this.saveFileDialog.RestoreDirectory = true;
80      this.saveFileDialog.Title = "Save Cache";
81      //
82      // saveButton
83      //
84      this.saveButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
85      this.saveButton.Location = new System.Drawing.Point(384, 23);
86      this.saveButton.Name = "saveButton";
87      this.saveButton.Size = new System.Drawing.Size(54, 23);
88      this.saveButton.TabIndex = 8;
89      this.saveButton.Text = "Save...";
90      this.saveButton.UseVisualStyleBackColor = true;
91      this.saveButton.Click += new System.EventHandler(this.saveButton_Click);
92      //
93      // EvaluationCacheView
94      //
95      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
96      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
97      this.Controls.Add(this.hits_sizeTextBox);
98      this.Controls.Add(this.hits_sizeLabel);
99      this.Controls.Add(this.clearButton);
100      this.Controls.Add(this.saveButton);
101      this.Name = "EvaluationCacheView";
102      this.Controls.SetChildIndex(this.saveButton, 0);
103      this.Controls.SetChildIndex(this.clearButton, 0);
104      this.Controls.SetChildIndex(this.hits_sizeLabel, 0);
105      this.Controls.SetChildIndex(this.hits_sizeTextBox, 0);
106      this.Controls.SetChildIndex(this.infoLabel, 0);
107      this.Controls.SetChildIndex(this.nameTextBox, 0);
108      this.Controls.SetChildIndex(this.nameLabel, 0);
109      this.Controls.SetChildIndex(this.parameterCollectionView, 0);
110      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
111      this.ResumeLayout(false);
112      this.PerformLayout();
113
114    }
115
116    #endregion
117
118    private System.Windows.Forms.Label hits_sizeLabel;
119    private System.Windows.Forms.TextBox hits_sizeTextBox;
120    private System.Windows.Forms.Button clearButton;
121    private System.Windows.Forms.SaveFileDialog saveFileDialog;
122    private System.Windows.Forms.Button saveButton;
123  }
124}
Note: See TracBrowser for help on using the repository browser.