1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2014 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 | namespace HeuristicLab.PluginInfrastructure.Advanced {
|
---|
22 | partial class ConfirmationDialog {
|
---|
23 | /// <summary>
|
---|
24 | /// Required designer variable.
|
---|
25 | /// </summary>
|
---|
26 | private System.ComponentModel.IContainer components = null;
|
---|
27 |
|
---|
28 | /// <summary>
|
---|
29 | /// Clean up any resources being used.
|
---|
30 | /// </summary>
|
---|
31 | /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
---|
32 | protected override void Dispose(bool disposing) {
|
---|
33 | if (disposing && (components != null)) {
|
---|
34 | components.Dispose();
|
---|
35 | }
|
---|
36 | base.Dispose(disposing);
|
---|
37 | }
|
---|
38 |
|
---|
39 | #region Windows Form Designer generated code
|
---|
40 |
|
---|
41 | /// <summary>
|
---|
42 | /// Required method for Designer support - do not modify
|
---|
43 | /// the contents of this method with the code editor.
|
---|
44 | /// </summary>
|
---|
45 | private void InitializeComponent() {
|
---|
46 | this.components = new System.ComponentModel.Container();
|
---|
47 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ConfirmationDialog));
|
---|
48 | this.informationTextBox = new System.Windows.Forms.RichTextBox();
|
---|
49 | this.messageLabel = new System.Windows.Forms.Label();
|
---|
50 | this.okButton = new System.Windows.Forms.Button();
|
---|
51 | this.cancelButton = new System.Windows.Forms.Button();
|
---|
52 | this.icon = new System.Windows.Forms.PictureBox();
|
---|
53 | this.panel1 = new System.Windows.Forms.Panel();
|
---|
54 | this.toolTip = new System.Windows.Forms.ToolTip(this.components);
|
---|
55 | ((System.ComponentModel.ISupportInitialize)(this.icon)).BeginInit();
|
---|
56 | this.panel1.SuspendLayout();
|
---|
57 | this.SuspendLayout();
|
---|
58 | //
|
---|
59 | // informationTextBox
|
---|
60 | //
|
---|
61 | this.informationTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
62 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
63 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
64 | this.informationTextBox.BackColor = System.Drawing.SystemColors.HighlightText;
|
---|
65 | this.informationTextBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
---|
66 | this.informationTextBox.Location = new System.Drawing.Point(105, 46);
|
---|
67 | this.informationTextBox.Name = "informationTextBox";
|
---|
68 | this.informationTextBox.ReadOnly = true;
|
---|
69 | this.informationTextBox.Size = new System.Drawing.Size(301, 181);
|
---|
70 | this.informationTextBox.TabIndex = 0;
|
---|
71 | this.informationTextBox.Text = "";
|
---|
72 | //
|
---|
73 | // messageLabel
|
---|
74 | //
|
---|
75 | this.messageLabel.AutoSize = true;
|
---|
76 | this.messageLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
---|
77 | this.messageLabel.Location = new System.Drawing.Point(13, 13);
|
---|
78 | this.messageLabel.Name = "messageLabel";
|
---|
79 | this.messageLabel.Size = new System.Drawing.Size(0, 13);
|
---|
80 | this.messageLabel.TabIndex = 1;
|
---|
81 | //
|
---|
82 | // okButton
|
---|
83 | //
|
---|
84 | this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
---|
85 | this.okButton.Location = new System.Drawing.Point(250, 14);
|
---|
86 | this.okButton.Name = "okButton";
|
---|
87 | this.okButton.Size = new System.Drawing.Size(75, 23);
|
---|
88 | this.okButton.TabIndex = 2;
|
---|
89 | this.okButton.Text = "&OK";
|
---|
90 | this.toolTip.SetToolTip(this.okButton, "Confirm Action");
|
---|
91 | this.okButton.UseVisualStyleBackColor = true;
|
---|
92 | this.okButton.Click += new System.EventHandler(this.okButton_Click);
|
---|
93 | //
|
---|
94 | // cancelButton
|
---|
95 | //
|
---|
96 | this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
---|
97 | this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
---|
98 | this.cancelButton.Location = new System.Drawing.Point(331, 14);
|
---|
99 | this.cancelButton.Name = "cancelButton";
|
---|
100 | this.cancelButton.Size = new System.Drawing.Size(75, 23);
|
---|
101 | this.cancelButton.TabIndex = 3;
|
---|
102 | this.cancelButton.Text = "&Cancel";
|
---|
103 | this.toolTip.SetToolTip(this.cancelButton, "Cancel Action");
|
---|
104 | this.cancelButton.UseVisualStyleBackColor = true;
|
---|
105 | this.cancelButton.Click += new System.EventHandler(this.cancelButton_Click);
|
---|
106 | //
|
---|
107 | // icon
|
---|
108 | //
|
---|
109 | this.icon.Location = new System.Drawing.Point(31, 66);
|
---|
110 | this.icon.Name = "icon";
|
---|
111 | this.icon.Size = new System.Drawing.Size(47, 50);
|
---|
112 | this.icon.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
|
---|
113 | this.icon.TabIndex = 4;
|
---|
114 | this.icon.TabStop = false;
|
---|
115 | //
|
---|
116 | // panel1
|
---|
117 | //
|
---|
118 | this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
|
---|
119 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
120 | this.panel1.BackColor = System.Drawing.SystemColors.Control;
|
---|
121 | this.panel1.Controls.Add(this.okButton);
|
---|
122 | this.panel1.Controls.Add(this.cancelButton);
|
---|
123 | this.panel1.Location = new System.Drawing.Point(0, 233);
|
---|
124 | this.panel1.Name = "panel1";
|
---|
125 | this.panel1.Size = new System.Drawing.Size(418, 50);
|
---|
126 | this.panel1.TabIndex = 6;
|
---|
127 | //
|
---|
128 | // ConfirmationDialog
|
---|
129 | //
|
---|
130 | this.AcceptButton = this.okButton;
|
---|
131 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
132 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
|
---|
133 | this.BackColor = System.Drawing.SystemColors.HighlightText;
|
---|
134 | this.CancelButton = this.cancelButton;
|
---|
135 | this.ClientSize = new System.Drawing.Size(418, 282);
|
---|
136 | this.Controls.Add(this.panel1);
|
---|
137 | this.Controls.Add(this.icon);
|
---|
138 | this.Controls.Add(this.messageLabel);
|
---|
139 | this.Controls.Add(this.informationTextBox);
|
---|
140 | this.Icon = HeuristicLab.PluginInfrastructure.Resources.HeuristicLab;
|
---|
141 | this.MaximizeBox = false;
|
---|
142 | this.MinimizeBox = false;
|
---|
143 | this.Name = "ConfirmationDialog";
|
---|
144 | this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
---|
145 | this.Text = "ConfirmationDialog";
|
---|
146 | ((System.ComponentModel.ISupportInitialize)(this.icon)).EndInit();
|
---|
147 | this.panel1.ResumeLayout(false);
|
---|
148 | this.ResumeLayout(false);
|
---|
149 | this.PerformLayout();
|
---|
150 |
|
---|
151 | }
|
---|
152 |
|
---|
153 | #endregion
|
---|
154 |
|
---|
155 | private System.Windows.Forms.RichTextBox informationTextBox;
|
---|
156 | private System.Windows.Forms.Label messageLabel;
|
---|
157 | private System.Windows.Forms.Button okButton;
|
---|
158 | private System.Windows.Forms.Button cancelButton;
|
---|
159 | private System.Windows.Forms.PictureBox icon;
|
---|
160 | private System.Windows.Forms.Panel panel1;
|
---|
161 | private System.Windows.Forms.ToolTip toolTip;
|
---|
162 | }
|
---|
163 | } |
---|