Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.DataProcessor/ExportDialog.Designer.cs @ 9615

Last change on this file since 9615 was 9615, checked in by mkommend, 11 years ago

#1734: Updated copyright information in all DataImporter classes.

File size: 5.5 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2013 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22namespace HeuristicLab.DataImporter.DataProcessor {
23  partial class ExportDialog {
24    /// <summary>
25    /// Required designer variable.
26    /// </summary>
27    private System.ComponentModel.IContainer components = null;
28
29    /// <summary>
30    /// Clean up any resources being used.
31    /// </summary>
32    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
33    protected override void Dispose(bool disposing) {
34      if (disposing && (components != null)) {
35        components.Dispose();
36      }
37      base.Dispose(disposing);
38    }
39
40    #region Windows Form Designer generated code
41
42    /// <summary>
43    /// Required method for Designer support - do not modify
44    /// the contents of this method with the code editor.
45    /// </summary>
46    private void InitializeComponent() {
47      this.btnOK = new System.Windows.Forms.Button();
48      this.btnCancel = new System.Windows.Forms.Button();
49      this.exporterListBox = new System.Windows.Forms.ListBox();
50      this.label1 = new System.Windows.Forms.Label();
51      this.settingsPanel = new System.Windows.Forms.Panel();
52      this.SuspendLayout();
53      //
54      // btnOK
55      //
56      this.btnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
57      this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
58      this.btnOK.Location = new System.Drawing.Point(259, 203);
59      this.btnOK.Name = "btnOK";
60      this.btnOK.Size = new System.Drawing.Size(75, 23);
61      this.btnOK.TabIndex = 0;
62      this.btnOK.Text = "Ok";
63      this.btnOK.UseVisualStyleBackColor = true;
64      this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
65      //
66      // btnCancel
67      //
68      this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
69      this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
70      this.btnCancel.Location = new System.Drawing.Point(340, 203);
71      this.btnCancel.Name = "btnCancel";
72      this.btnCancel.Size = new System.Drawing.Size(75, 23);
73      this.btnCancel.TabIndex = 1;
74      this.btnCancel.Text = "Cancel";
75      this.btnCancel.UseVisualStyleBackColor = true;
76      //
77      // exporterListBox
78      //
79      this.exporterListBox.DisplayMember = "Description";
80      this.exporterListBox.FormattingEnabled = true;
81      this.exporterListBox.Location = new System.Drawing.Point(15, 28);
82      this.exporterListBox.Name = "exporterListBox";
83      this.exporterListBox.Size = new System.Drawing.Size(400, 82);
84      this.exporterListBox.TabIndex = 2;
85      this.exporterListBox.SelectedIndexChanged += new System.EventHandler(this.exporterListBox_SelectedIndexChanged);
86      //
87      // label1
88      //
89      this.label1.AutoSize = true;
90      this.label1.Location = new System.Drawing.Point(12, 12);
91      this.label1.Name = "label1";
92      this.label1.Size = new System.Drawing.Size(103, 13);
93      this.label1.TabIndex = 3;
94      this.label1.Text = "Choose Export-Task";
95      //
96      // settingsPanel
97      //
98      this.settingsPanel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
99                  | System.Windows.Forms.AnchorStyles.Left)));
100      this.settingsPanel.Location = new System.Drawing.Point(15, 116);
101      this.settingsPanel.Name = "settingsPanel";
102      this.settingsPanel.Size = new System.Drawing.Size(400, 80);
103      this.settingsPanel.TabIndex = 4;
104      //
105      // ExportDialog
106      //
107      this.AcceptButton = this.btnOK;
108      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
109      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
110      this.CancelButton = this.btnCancel;
111      this.ClientSize = new System.Drawing.Size(427, 233);
112      this.ControlBox = false;
113      this.Controls.Add(this.settingsPanel);
114      this.Controls.Add(this.label1);
115      this.Controls.Add(this.exporterListBox);
116      this.Controls.Add(this.btnCancel);
117      this.Controls.Add(this.btnOK);
118      this.MaximizeBox = false;
119      this.MinimizeBox = false;
120      this.Name = "ExportDialog";
121      this.ShowInTaskbar = false;
122      this.Text = "ExportDialog";
123      this.TopMost = true;
124      this.ResumeLayout(false);
125      this.PerformLayout();
126
127    }
128
129    #endregion
130
131    private System.Windows.Forms.Button btnOK;
132    private System.Windows.Forms.Button btnCancel;
133    private System.Windows.Forms.ListBox exporterListBox;
134    private System.Windows.Forms.Label label1;
135    private System.Windows.Forms.Panel settingsPanel;
136  }
137}
Note: See TracBrowser for help on using the repository browser.