Free cookie consent management tool by TermsFeed Policy Generator

source: branches/ALPS/HeuristicLab.Core.Views/3.3/TypeSelectorDialog.Designer.cs @ 12018

Last change on this file since 12018 was 12018, checked in by pfleck, 9 years ago

#2269

  • merged trunk after 3.3.11 release
  • updated copyright and plugin version in ALPS plugin
  • removed old ALPS samples based on an userdefined alg
File size: 4.7 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2015 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.Core.Views {
23  partial class TypeSelectorDialog {
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)) components.Dispose();
35      base.Dispose(disposing);
36    }
37
38    #region Windows Form Designer generated code
39
40    /// <summary>
41    /// Required method for Designer support - do not modify
42    /// the contents of this method with the code editor.
43    /// </summary>
44    private void InitializeComponent() {
45      this.okButton = new System.Windows.Forms.Button();
46      this.cancelButton = new System.Windows.Forms.Button();
47      this.typeSelector = new HeuristicLab.Core.Views.TypeSelector();
48      this.SuspendLayout();
49      //
50      // okButton
51      //
52      this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
53      this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
54      this.okButton.Location = new System.Drawing.Point(440, 538);
55      this.okButton.Name = "okButton";
56      this.okButton.Size = new System.Drawing.Size(75, 23);
57      this.okButton.TabIndex = 1;
58      this.okButton.Text = "&OK";
59      this.okButton.UseVisualStyleBackColor = true;
60      //
61      // cancelButton
62      //
63      this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
64      this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
65      this.cancelButton.Location = new System.Drawing.Point(521, 538);
66      this.cancelButton.Name = "cancelButton";
67      this.cancelButton.Size = new System.Drawing.Size(75, 23);
68      this.cancelButton.TabIndex = 2;
69      this.cancelButton.Text = "&Cancel";
70      this.cancelButton.UseVisualStyleBackColor = true;
71      //
72      // typeSelector
73      //
74      this.typeSelector.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
75                  | System.Windows.Forms.AnchorStyles.Left)
76                  | System.Windows.Forms.AnchorStyles.Right)));
77      this.typeSelector.Caption = "Available Types";
78      this.typeSelector.Location = new System.Drawing.Point(12, 12);
79      this.typeSelector.Name = "typeSelector";
80      this.typeSelector.Size = new System.Drawing.Size(584, 520);
81      this.typeSelector.TabIndex = 0;
82      this.typeSelector.SelectedTypeChanged += new System.EventHandler(this.typeSelector_SelectedTypeChanged);
83      //
84      // TypeSelectorDialog
85      //
86      this.AcceptButton = this.okButton;
87      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
88      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
89      this.CancelButton = this.cancelButton;
90      this.ClientSize = new System.Drawing.Size(608, 573);
91      this.Controls.Add(this.typeSelector);
92      this.Controls.Add(this.cancelButton);
93      this.Controls.Add(this.okButton);
94      this.MaximizeBox = false;
95      this.MinimizeBox = false;
96      this.Name = "TypeSelectorDialog";
97      this.ShowIcon = false;
98      this.ShowInTaskbar = false;
99      this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
100      this.Text = "Select Type";
101      this.Load += new System.EventHandler(this.TypeSelectorDialog_Load);
102      this.ResumeLayout(false);
103
104    }
105
106    #endregion
107
108    protected System.Windows.Forms.Button okButton;
109    protected System.Windows.Forms.Button cancelButton;
110    protected TypeSelector typeSelector;
111  }
112}
Note: See TracBrowser for help on using the repository browser.