Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Backend.Hl2ImporterFormat/Hl2ImporterView.Designer.cs @ 6133

Last change on this file since 6133 was 6133, checked in by gkronber, 14 years ago

#1471: imported generic parts of DataImporter from private code base

File size: 2.9 KB
Line 
1namespace HeuristicLab.DataImporter.Backend.Hl2ImporterFormat {
2  partial class Hl2ImporterView {
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.btnBrowse = new System.Windows.Forms.Button();
27      this.label1 = new System.Windows.Forms.Label();
28      this.txtFileName = new System.Windows.Forms.TextBox();
29      this.SuspendLayout();
30      //
31      // btnBrowse
32      //
33      this.btnBrowse.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
34      this.btnBrowse.Location = new System.Drawing.Point(323, 3);
35      this.btnBrowse.Name = "btnBrowse";
36      this.btnBrowse.Size = new System.Drawing.Size(75, 23);
37      this.btnBrowse.TabIndex = 17;
38      this.btnBrowse.Text = "Browse";
39      this.btnBrowse.UseVisualStyleBackColor = true;
40      this.btnBrowse.Click += new System.EventHandler(this.btnBrowse_Click);
41      //
42      // label1
43      //
44      this.label1.AutoSize = true;
45      this.label1.Location = new System.Drawing.Point(1, 7);
46      this.label1.Name = "label1";
47      this.label1.Size = new System.Drawing.Size(49, 13);
48      this.label1.TabIndex = 16;
49      this.label1.Text = "Filename";
50      //
51      // txtFileName
52      //
53      this.txtFileName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
54                  | System.Windows.Forms.AnchorStyles.Right)));
55      this.txtFileName.Location = new System.Drawing.Point(54, 4);
56      this.txtFileName.Name = "txtFileName";
57      this.txtFileName.Size = new System.Drawing.Size(263, 20);
58      this.txtFileName.TabIndex = 15;
59      //
60      // Hl2ImporterView
61      //
62      this.Controls.Add(this.btnBrowse);
63      this.Controls.Add(this.label1);
64      this.Controls.Add(this.txtFileName);
65      this.Name = "Hl2ImporterView";
66      this.Size = new System.Drawing.Size(400, 32);
67      this.ResumeLayout(false);
68      this.PerformLayout();
69
70    }
71
72    #endregion
73
74    private System.Windows.Forms.Button btnBrowse;
75    private System.Windows.Forms.Label label1;
76    private System.Windows.Forms.TextBox txtFileName;
77  }
78}
Note: See TracBrowser for help on using the repository browser.