Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.DataProcessor/ImportDialog.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: 4.7 KB
Line 
1namespace HeuristicLab.DataImporter.DataProcessor {
2  partial class ImportDialog {
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.btnOK = new System.Windows.Forms.Button();
27      this.btnCancel = new System.Windows.Forms.Button();
28      this.importerListBox = new System.Windows.Forms.ListBox();
29      this.label1 = new System.Windows.Forms.Label();
30      this.settingsPanel = new System.Windows.Forms.Panel();
31      this.SuspendLayout();
32      //
33      // btnOK
34      //
35      this.btnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
36      this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
37      this.btnOK.Location = new System.Drawing.Point(259, 203);
38      this.btnOK.Name = "btnOK";
39      this.btnOK.Size = new System.Drawing.Size(75, 23);
40      this.btnOK.TabIndex = 0;
41      this.btnOK.Text = "Ok";
42      this.btnOK.UseVisualStyleBackColor = true;
43      this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
44      //
45      // btnCancel
46      //
47      this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
48      this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
49      this.btnCancel.Location = new System.Drawing.Point(340, 203);
50      this.btnCancel.Name = "btnCancel";
51      this.btnCancel.Size = new System.Drawing.Size(75, 23);
52      this.btnCancel.TabIndex = 1;
53      this.btnCancel.Text = "Cancel";
54      this.btnCancel.UseVisualStyleBackColor = true;
55      //
56      // importerListBox
57      //
58      this.importerListBox.DisplayMember = "Description";
59      this.importerListBox.FormattingEnabled = true;
60      this.importerListBox.Location = new System.Drawing.Point(15, 28);
61      this.importerListBox.Name = "importerListBox";
62      this.importerListBox.Size = new System.Drawing.Size(400, 82);
63      this.importerListBox.TabIndex = 2;
64      this.importerListBox.SelectedIndexChanged += new System.EventHandler(this.importerListBox_SelectedIndexChanged);
65      //
66      // label1
67      //
68      this.label1.AutoSize = true;
69      this.label1.Location = new System.Drawing.Point(12, 12);
70      this.label1.Name = "label1";
71      this.label1.Size = new System.Drawing.Size(102, 13);
72      this.label1.TabIndex = 3;
73      this.label1.Text = "Choose Import-Task";
74      //
75      // settingsPanel
76      //
77      this.settingsPanel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
78                  | System.Windows.Forms.AnchorStyles.Left)));
79      this.settingsPanel.Location = new System.Drawing.Point(15, 116);
80      this.settingsPanel.Name = "settingsPanel";
81      this.settingsPanel.Size = new System.Drawing.Size(400, 80);
82      this.settingsPanel.TabIndex = 4;
83      //
84      // ImportDialog
85      //
86      this.AcceptButton = this.btnOK;
87      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
88      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
89      this.CancelButton = this.btnCancel;
90      this.ClientSize = new System.Drawing.Size(427, 233);
91      this.ControlBox = false;
92      this.Controls.Add(this.settingsPanel);
93      this.Controls.Add(this.label1);
94      this.Controls.Add(this.importerListBox);
95      this.Controls.Add(this.btnCancel);
96      this.Controls.Add(this.btnOK);
97      this.MaximizeBox = false;
98      this.MinimizeBox = false;
99      this.Name = "ImportDialog";
100      this.ShowInTaskbar = false;
101      this.Text = "Import Dialog";
102      this.TopMost = true;
103      this.ResumeLayout(false);
104      this.PerformLayout();
105
106    }
107
108    #endregion
109
110    private System.Windows.Forms.Button btnOK;
111    private System.Windows.Forms.Button btnCancel;
112    private System.Windows.Forms.ListBox importerListBox;
113    private System.Windows.Forms.Label label1;
114    private System.Windows.Forms.Panel settingsPanel;
115  }
116}
Note: See TracBrowser for help on using the repository browser.