Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2520_PersistenceReintegration/HeuristicLab.Optimizer/3.3/MainFormTypeSelectionDialog.Designer.cs @ 16474

Last change on this file since 16474 was 16453, checked in by jkarder, 5 years ago

#2520: updated year of copyrights

File size: 8.7 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2019 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 {
23  partial class MainFormTypeSelectionDialog {
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.components = new System.ComponentModel.Container();
48      this.cancelButton = new System.Windows.Forms.Button();
49      this.okButton = new System.Windows.Forms.Button();
50      this.groupBox = new System.Windows.Forms.GroupBox();
51      this.rbSingleDocumentMainForm = new System.Windows.Forms.RadioButton();
52      this.rbMultipleDocumentMainForm = new System.Windows.Forms.RadioButton();
53      this.rbDockingMainForm = new System.Windows.Forms.RadioButton();
54      this.toolTip = new System.Windows.Forms.ToolTip(this.components);
55      this.labelRestart = new System.Windows.Forms.Label();
56      this.groupBox.SuspendLayout();
57      this.SuspendLayout();
58      //
59      // cancelButton
60      //
61      this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
62      this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
63      this.cancelButton.Location = new System.Drawing.Point(173, 167);
64      this.cancelButton.Name = "cancelButton";
65      this.cancelButton.Size = new System.Drawing.Size(75, 23);
66      this.cancelButton.TabIndex = 9;
67      this.cancelButton.Text = "&Cancel";
68      this.cancelButton.UseVisualStyleBackColor = true;
69      //
70      // okButton
71      //
72      this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
73      this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
74      this.okButton.Location = new System.Drawing.Point(92, 167);
75      this.okButton.Name = "okButton";
76      this.okButton.Size = new System.Drawing.Size(75, 23);
77      this.okButton.TabIndex = 8;
78      this.okButton.Text = "&OK";
79      this.okButton.UseVisualStyleBackColor = true;
80      this.okButton.Click += new System.EventHandler(this.okButton_Click);
81      //
82      // groupBox
83      //
84      this.groupBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
85                  | System.Windows.Forms.AnchorStyles.Right)));
86      this.groupBox.Controls.Add(this.rbSingleDocumentMainForm);
87      this.groupBox.Controls.Add(this.rbMultipleDocumentMainForm);
88      this.groupBox.Controls.Add(this.rbDockingMainForm);
89      this.groupBox.Location = new System.Drawing.Point(12, 12);
90      this.groupBox.Name = "groupBox";
91      this.groupBox.Size = new System.Drawing.Size(234, 93);
92      this.groupBox.TabIndex = 10;
93      this.groupBox.TabStop = false;
94      this.groupBox.Text = "MainForm Types";
95      //
96      // rbSingleDocumentMainForm
97      //
98      this.rbSingleDocumentMainForm.AutoSize = true;
99      this.rbSingleDocumentMainForm.Location = new System.Drawing.Point(6, 65);
100      this.rbSingleDocumentMainForm.Name = "rbSingleDocumentMainForm";
101      this.rbSingleDocumentMainForm.Size = new System.Drawing.Size(106, 17);
102      this.rbSingleDocumentMainForm.TabIndex = 2;
103      this.rbSingleDocumentMainForm.TabStop = true;
104      this.rbSingleDocumentMainForm.Text = "&Single Document";
105      this.toolTip.SetToolTip(this.rbSingleDocumentMainForm, "Creates for each open document an own window");
106      this.rbSingleDocumentMainForm.UseVisualStyleBackColor = true;
107      //
108      // rbMultipleDocumentMainForm
109      //
110      this.rbMultipleDocumentMainForm.AutoSize = true;
111      this.rbMultipleDocumentMainForm.Location = new System.Drawing.Point(6, 42);
112      this.rbMultipleDocumentMainForm.Name = "rbMultipleDocumentMainForm";
113      this.rbMultipleDocumentMainForm.Size = new System.Drawing.Size(113, 17);
114      this.rbMultipleDocumentMainForm.TabIndex = 1;
115      this.rbMultipleDocumentMainForm.TabStop = true;
116      this.rbMultipleDocumentMainForm.Text = "&Multiple Document";
117      this.toolTip.SetToolTip(this.rbMultipleDocumentMainForm, "Shows for each open document an own, nested window");
118      this.rbMultipleDocumentMainForm.UseVisualStyleBackColor = true;
119      //
120      // rbDockingMainForm
121      //
122      this.rbDockingMainForm.AutoSize = true;
123      this.rbDockingMainForm.Location = new System.Drawing.Point(6, 19);
124      this.rbDockingMainForm.Name = "rbDockingMainForm";
125      this.rbDockingMainForm.Size = new System.Drawing.Size(65, 17);
126      this.rbDockingMainForm.TabIndex = 0;
127      this.rbDockingMainForm.TabStop = true;
128      this.rbDockingMainForm.Text = "&Docking";
129      this.toolTip.SetToolTip(this.rbDockingMainForm, "Displays open documents as tab pages. \r\nIf you have resizing issues in the user i" +
130              "nterface, please try the other options.");
131      this.rbDockingMainForm.UseVisualStyleBackColor = true;
132      //
133      // labelRestart
134      //
135      this.labelRestart.AutoSize = true;
136      this.labelRestart.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
137      this.labelRestart.ForeColor = System.Drawing.Color.Red;
138      this.labelRestart.Location = new System.Drawing.Point(9, 123);
139      this.labelRestart.Name = "labelRestart";
140      this.labelRestart.Size = new System.Drawing.Size(241, 26);
141      this.labelRestart.TabIndex = 11;
142      this.labelRestart.Text = "Please note that you have to restart the \r\nOptimizer for the changes to take effe" +
143          "ct. ";
144      //
145      // MainFormTypeSelectionDialog
146      //
147      this.AcceptButton = this.okButton;
148      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
149      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
150      this.CancelButton = this.cancelButton;
151      this.ClientSize = new System.Drawing.Size(260, 202);
152      this.Controls.Add(this.labelRestart);
153      this.Controls.Add(this.groupBox);
154      this.Controls.Add(this.cancelButton);
155      this.Controls.Add(this.okButton);
156      this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
157      this.MaximizeBox = false;
158      this.MinimizeBox = false;
159      this.Name = "MainFormTypeSelectionDialog";
160      this.ShowIcon = false;
161      this.ShowInTaskbar = false;
162      this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
163      this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
164      this.Text = "Change MainForm Type";
165      this.Load += new System.EventHandler(this.MainFormTypeSelectionDialog_Load);
166      this.groupBox.ResumeLayout(false);
167      this.groupBox.PerformLayout();
168      this.ResumeLayout(false);
169      this.PerformLayout();
170
171    }
172
173    #endregion
174
175    private System.Windows.Forms.Button cancelButton;
176    private System.Windows.Forms.Button okButton;
177    private System.Windows.Forms.GroupBox groupBox;
178    private System.Windows.Forms.RadioButton rbMultipleDocumentMainForm;
179    private System.Windows.Forms.RadioButton rbDockingMainForm;
180    private System.Windows.Forms.ToolTip toolTip;
181    private System.Windows.Forms.RadioButton rbSingleDocumentMainForm;
182    private System.Windows.Forms.Label labelRestart;
183  }
184}
Note: See TracBrowser for help on using the repository browser.