Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 7580 was 7580, checked in by ascheibe, 13 years ago

#1174 added view for uploading existing runs from an experiment

File size: 3.1 KB
Line 
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.tableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
27      this.btnUpload = new System.Windows.Forms.Button();
28      this.SuspendLayout();
29      //
30      // tableLayoutPanel
31      //
32      this.tableLayoutPanel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
33                  | System.Windows.Forms.AnchorStyles.Left)
34                  | System.Windows.Forms.AnchorStyles.Right)));
35      this.tableLayoutPanel.AutoScroll = true;
36      this.tableLayoutPanel.BackColor = System.Drawing.SystemColors.Control;
37      this.tableLayoutPanel.ColumnCount = 1;
38      this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
39      this.tableLayoutPanel.Location = new System.Drawing.Point(3, 3);
40      this.tableLayoutPanel.Name = "tableLayoutPanel";
41      this.tableLayoutPanel.RowCount = 1;
42      this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
43      this.tableLayoutPanel.Size = new System.Drawing.Size(460, 190);
44      this.tableLayoutPanel.TabIndex = 0;
45      //
46      // btnUpload
47      //
48      this.btnUpload.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
49      this.btnUpload.Location = new System.Drawing.Point(4, 200);
50      this.btnUpload.Name = "btnUpload";
51      this.btnUpload.Size = new System.Drawing.Size(89, 23);
52      this.btnUpload.TabIndex = 1;
53      this.btnUpload.Text = "Upload Runs";
54      this.btnUpload.UseVisualStyleBackColor = true;
55      this.btnUpload.Click += new System.EventHandler(this.btnUpload_Click);
56      //
57      // OKBExperimentUploadView
58      //
59      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
60      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
61      this.Controls.Add(this.btnUpload);
62      this.Controls.Add(this.tableLayoutPanel);
63      this.Name = "OKBExperimentUploadView";
64      this.Size = new System.Drawing.Size(466, 229);
65      this.ResumeLayout(false);
66
67    }
68
69    #endregion
70
71    private System.Windows.Forms.TableLayoutPanel tableLayoutPanel;
72    private System.Windows.Forms.Button btnUpload;
73  }
74}
Note: See TracBrowser for help on using the repository browser.