Free cookie consent management tool by TermsFeed Policy Generator

source: branches/VisualizeAsMDS/HeuristicLab.Optimizer.Tools/3.3/SetNamesDialog.Designer.cs @ 7541

Last change on this file since 7541 was 7541, checked in by abeham, 12 years ago

#1780: added dialog for setting the names, ability to include a charateristic

File size: 4.4 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.Optimizer.Tools {
23  partial class SetNamesDialog {
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      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SetNamesDialog));
48      this.cancelButton = new System.Windows.Forms.Button();
49      this.okButton = new System.Windows.Forms.Button();
50      this.contentPanel = new System.Windows.Forms.Panel();
51      this.SuspendLayout();
52      //
53      // cancelButton
54      //
55      this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
56      this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
57      this.cancelButton.Location = new System.Drawing.Point(225, 307);
58      this.cancelButton.Name = "cancelButton";
59      this.cancelButton.Size = new System.Drawing.Size(75, 23);
60      this.cancelButton.TabIndex = 0;
61      this.cancelButton.Text = "Cancel";
62      this.cancelButton.UseVisualStyleBackColor = true;
63      this.cancelButton.Click += new System.EventHandler(this.cancelButton_Click);
64      //
65      // okButton
66      //
67      this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
68      this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
69      this.okButton.Location = new System.Drawing.Point(144, 307);
70      this.okButton.Name = "okButton";
71      this.okButton.Size = new System.Drawing.Size(75, 23);
72      this.okButton.TabIndex = 1;
73      this.okButton.Text = "OK";
74      this.okButton.UseVisualStyleBackColor = true;
75      this.okButton.Click += new System.EventHandler(this.okButton_Click);
76      //
77      // contentPanel
78      //
79      this.contentPanel.Location = new System.Drawing.Point(12, 12);
80      this.contentPanel.Name = "contentPanel";
81      this.contentPanel.Size = new System.Drawing.Size(288, 289);
82      this.contentPanel.TabIndex = 2;
83      //
84      // SetNamesDialog
85      //
86      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
87      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
88      this.CancelButton = this.cancelButton;
89      this.ClientSize = new System.Drawing.Size(312, 342);
90      this.Controls.Add(this.contentPanel);
91      this.Controls.Add(this.okButton);
92      this.Controls.Add(this.cancelButton);
93      this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
94      this.MinimizeBox = false;
95      this.Name = "SetNamesDialog";
96      this.Text = "Set Names ...";
97      this.ResumeLayout(false);
98
99    }
100
101    #endregion
102
103    private System.Windows.Forms.Button cancelButton;
104    private System.Windows.Forms.Button okButton;
105    private System.Windows.Forms.Panel contentPanel;
106  }
107}
Note: See TracBrowser for help on using the repository browser.