Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Data/View/CommandViewDialog.Designer.cs @ 7267

Last change on this file since 7267 was 7267, checked in by gkronber, 12 years ago

#1734 updated copyright year in all files of the DataImporter branch

File size: 4.9 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2012 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.Data.View {
23  partial class CommandViewDialog {
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    private System.Windows.Forms.Button btnOk;
41    private System.Windows.Forms.Button btnCancel;
42    private System.Windows.Forms.Panel panel2;
43    private System.Windows.Forms.Panel panel;
44    public System.Windows.Forms.Panel Panel {
45      get { return this.panel; }
46    }
47
48    #region Windows Form Designer generated code
49
50    /// <summary>
51    /// Required method for Designer support - do not modify
52    /// the contents of this method with the code editor.
53    /// </summary>
54    private void InitializeComponent() {
55      this.btnOk = new System.Windows.Forms.Button();
56      this.btnCancel = new System.Windows.Forms.Button();
57      this.panel2 = new System.Windows.Forms.Panel();
58      this.panel = new System.Windows.Forms.Panel();
59      this.panel2.SuspendLayout();
60      this.SuspendLayout();
61      //
62      // btnOk
63      //
64      this.btnOk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
65      this.btnOk.DialogResult = System.Windows.Forms.DialogResult.OK;
66      this.btnOk.Location = new System.Drawing.Point(5, 4);
67      this.btnOk.Name = "btnOk";
68      this.btnOk.Size = new System.Drawing.Size(75, 23);
69      this.btnOk.TabIndex = 0;
70      this.btnOk.Text = "Ok";
71      this.btnOk.UseVisualStyleBackColor = true;
72      //
73      // btnCancel
74      //
75      this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
76      this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
77      this.btnCancel.Location = new System.Drawing.Point(86, 4);
78      this.btnCancel.Name = "btnCancel";
79      this.btnCancel.Size = new System.Drawing.Size(75, 23);
80      this.btnCancel.TabIndex = 1;
81      this.btnCancel.Text = "Cancel";
82      this.btnCancel.UseVisualStyleBackColor = true;
83      //
84      // panel2
85      //
86      this.panel2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
87      this.panel2.Controls.Add(this.btnOk);
88      this.panel2.Controls.Add(this.btnCancel);
89      this.panel2.Location = new System.Drawing.Point(110, 146);
90      this.panel2.Name = "panel2";
91      this.panel2.Size = new System.Drawing.Size(166, 30);
92      this.panel2.TabIndex = 3;
93      //
94      // panel
95      //
96      this.panel.Location = new System.Drawing.Point(8, 8);
97      this.panel.Name = "panel";
98      this.panel.Size = new System.Drawing.Size(268, 100);
99      this.panel.TabIndex = 0;
100      this.panel.ControlAdded += new System.Windows.Forms.ControlEventHandler(this.Panel_ControlAdded);
101      //
102      // CommandViewDialog
103      //
104      this.AcceptButton = this.btnOk;
105      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
106      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
107      this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
108      this.CancelButton = this.btnCancel;
109      this.ClientSize = new System.Drawing.Size(284, 184);
110      this.Controls.Add(this.panel);
111      this.Controls.Add(this.panel2);
112      this.MaximizeBox = false;
113      this.MinimizeBox = false;
114      this.Name = "CommandViewDialog";
115      this.Padding = new System.Windows.Forms.Padding(5);
116      this.ShowInTaskbar = false;
117      this.Text = "Command Dialog";
118      this.panel2.ResumeLayout(false);
119      this.ResumeLayout(false);
120
121    }
122
123    #endregion
124
125
126
127
128  }
129}
Note: See TracBrowser for help on using the repository browser.