Free cookie consent management tool by TermsFeed Policy Generator

source: branches/ScatterSearch (trunk integration)/HeuristicLab.Clients.OKB.Views/3.3/RunCreation/Views/OKBExperimentUploadView.Designer.cs @ 8086

Last change on this file since 8086 was 8086, checked in by jkarder, 12 years ago

#1331:

  • synced branch with trunk
  • added custom interface (ISimilarityBasedOperator) to mark operators that conduct similarity calculation
  • similarity calculators are now parameterized by the algorithm
  • deleted SolutionPool2TierUpdateMethod
  • deleted KnapsackMultipleGuidesPathRelinker
  • moved IImprovementOperator, IPathRelinker and ISimilarityCalculator to HeuristicLab.Optimization
  • added parameter descriptions
  • fixed plugin references
  • fixed count of EvaluatedSolutions
  • fixed check for duplicate solutions
  • minor code improvements
File size: 9.0 KB
RevLine 
[8055]1namespace HeuristicLab.Clients.OKB.RunCreation {
2  partial class OKBExperimentUploadView {
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.components = new System.ComponentModel.Container();
27      this.btnUpload = new System.Windows.Forms.Button();
28      this.dataGridView = new System.Windows.Forms.DataGridView();
29      this.RunNameColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
30      this.AlgorithmNameColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
31      this.AlgorithmTypeColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
32      this.OKBAlgorithmColumn = new System.Windows.Forms.DataGridViewComboBoxColumn();
33      this.ProblemNameColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
34      this.ProblemTypeColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
35      this.OKBProblemColumn = new System.Windows.Forms.DataGridViewComboBoxColumn();
36      this.contextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
37      this.setColumnToThisValueToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
38      this.clearButton = new System.Windows.Forms.Button();
39      ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
40      this.contextMenu.SuspendLayout();
41      this.SuspendLayout();
42      //
43      // btnUpload
44      //
45      this.btnUpload.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
46      this.btnUpload.Location = new System.Drawing.Point(4, 200);
47      this.btnUpload.Name = "btnUpload";
48      this.btnUpload.Size = new System.Drawing.Size(89, 23);
49      this.btnUpload.TabIndex = 1;
50      this.btnUpload.Text = "Upload Runs";
51      this.btnUpload.UseVisualStyleBackColor = true;
52      this.btnUpload.Click += new System.EventHandler(this.btnUpload_Click);
53      //
54      // dataGridView
55      //
56      this.dataGridView.AllowDrop = true;
57      this.dataGridView.AllowUserToAddRows = false;
58      this.dataGridView.AllowUserToDeleteRows = false;
59      this.dataGridView.AllowUserToOrderColumns = true;
60      this.dataGridView.AllowUserToResizeRows = false;
61      this.dataGridView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
62                  | System.Windows.Forms.AnchorStyles.Left)
63                  | System.Windows.Forms.AnchorStyles.Right)));
64      this.dataGridView.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
65      this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
66      this.dataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
67            this.RunNameColumn,
68            this.AlgorithmNameColumn,
69            this.AlgorithmTypeColumn,
70            this.OKBAlgorithmColumn,
71            this.ProblemNameColumn,
72            this.ProblemTypeColumn,
73            this.OKBProblemColumn});
74      this.dataGridView.EditMode = System.Windows.Forms.DataGridViewEditMode.EditOnEnter;
75      this.dataGridView.Location = new System.Drawing.Point(3, 3);
76      this.dataGridView.Name = "dataGridView";
77      this.dataGridView.Size = new System.Drawing.Size(460, 191);
78      this.dataGridView.TabIndex = 2;
79      this.dataGridView.CellMouseClick += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.dataGridView_CellMouseClick);
80      this.dataGridView.DragDrop += new System.Windows.Forms.DragEventHandler(this.dataGridView_DragDrop);
81      this.dataGridView.DragEnter += new System.Windows.Forms.DragEventHandler(this.dataGridView_DragEnter);
82      //
83      // RunNameColumn
84      //
85      this.RunNameColumn.HeaderText = "Run Name";
86      this.RunNameColumn.Name = "RunNameColumn";
87      this.RunNameColumn.ReadOnly = true;
88      //
89      // AlgorithmNameColumn
90      //
91      this.AlgorithmNameColumn.HeaderText = "Algorithm Name";
92      this.AlgorithmNameColumn.Name = "AlgorithmNameColumn";
93      this.AlgorithmNameColumn.ReadOnly = true;
94      //
95      // AlgorithmTypeColumn
96      //
97      this.AlgorithmTypeColumn.HeaderText = "Algorithm Type";
98      this.AlgorithmTypeColumn.Name = "AlgorithmTypeColumn";
99      this.AlgorithmTypeColumn.ReadOnly = true;
100      //
101      // OKBAlgorithmColumn
102      //
103      this.OKBAlgorithmColumn.HeaderText = "OKB Algorithm";
104      this.OKBAlgorithmColumn.Name = "OKBAlgorithmColumn";
105      //
106      // ProblemNameColumn
107      //
108      this.ProblemNameColumn.HeaderText = "Problem Name";
109      this.ProblemNameColumn.Name = "ProblemNameColumn";
110      this.ProblemNameColumn.ReadOnly = true;
111      this.ProblemNameColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
112      this.ProblemNameColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
113      //
114      // ProblemTypeColumn
115      //
116      this.ProblemTypeColumn.HeaderText = "Problem Type";
117      this.ProblemTypeColumn.Name = "ProblemTypeColumn";
118      this.ProblemTypeColumn.ReadOnly = true;
119      this.ProblemTypeColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
120      this.ProblemTypeColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
121      //
122      // OKBProblemColumn
123      //
124      this.OKBProblemColumn.HeaderText = "OKB Problem";
125      this.OKBProblemColumn.Name = "OKBProblemColumn";
126      //
127      // contextMenu
128      //
129      this.contextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
130            this.setColumnToThisValueToolStripMenuItem});
131      this.contextMenu.Name = "contextMenu";
132      this.contextMenu.Size = new System.Drawing.Size(202, 26);
133      //
134      // setColumnToThisValueToolStripMenuItem
135      //
136      this.setColumnToThisValueToolStripMenuItem.Name = "setColumnToThisValueToolStripMenuItem";
137      this.setColumnToThisValueToolStripMenuItem.Size = new System.Drawing.Size(201, 22);
138      this.setColumnToThisValueToolStripMenuItem.Text = "Set column to this value";
139      this.setColumnToThisValueToolStripMenuItem.Click += new System.EventHandler(this.setColumnToThisValueToolStripMenuItem_Click);
140      //
141      // clearButton
142      //
143      this.clearButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
144      this.clearButton.Location = new System.Drawing.Point(387, 199);
145      this.clearButton.Name = "clearButton";
146      this.clearButton.Size = new System.Drawing.Size(75, 23);
147      this.clearButton.TabIndex = 3;
148      this.clearButton.Text = "Clear Runs";
149      this.clearButton.UseVisualStyleBackColor = true;
150      this.clearButton.Click += new System.EventHandler(this.clearButton_Click);
151      //
152      // OKBExperimentUploadView
153      //
154      this.AllowDrop = true;
155      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
156      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
157      this.Controls.Add(this.clearButton);
158      this.Controls.Add(this.dataGridView);
159      this.Controls.Add(this.btnUpload);
160      this.Name = "OKBExperimentUploadView";
161      this.Size = new System.Drawing.Size(466, 229);
162      ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
163      this.contextMenu.ResumeLayout(false);
164      this.ResumeLayout(false);
165
166    }
167
168    #endregion
169
170    private System.Windows.Forms.Button btnUpload;
171    private System.Windows.Forms.DataGridView dataGridView;
172    private System.Windows.Forms.DataGridViewTextBoxColumn RunNameColumn;
173    private System.Windows.Forms.DataGridViewTextBoxColumn AlgorithmNameColumn;
174    private System.Windows.Forms.DataGridViewTextBoxColumn AlgorithmTypeColumn;
175    private System.Windows.Forms.DataGridViewComboBoxColumn OKBAlgorithmColumn;
176    private System.Windows.Forms.DataGridViewTextBoxColumn ProblemNameColumn;
177    private System.Windows.Forms.DataGridViewTextBoxColumn ProblemTypeColumn;
178    private System.Windows.Forms.DataGridViewComboBoxColumn OKBProblemColumn;
179    private System.Windows.Forms.ContextMenuStrip contextMenu;
180    private System.Windows.Forms.ToolStripMenuItem setColumnToThisValueToolStripMenuItem;
181    private System.Windows.Forms.Button clearButton;
182  }
183}
Note: See TracBrowser for help on using the repository browser.