[3090] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2010 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 {
|
---|
[3069] | 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() {
|
---|
[3474] | 46 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ConfirmationDialog));
|
---|
[3069] | 47 | this.informationTextBox = new System.Windows.Forms.RichTextBox();
|
---|
| 48 | this.messageLabel = new System.Windows.Forms.Label();
|
---|
| 49 | this.okButton = new System.Windows.Forms.Button();
|
---|
| 50 | this.cancelButton = new System.Windows.Forms.Button();
|
---|
| 51 | this.icon = new System.Windows.Forms.PictureBox();
|
---|
| 52 | this.panel1 = new System.Windows.Forms.Panel();
|
---|
| 53 | ((System.ComponentModel.ISupportInitialize)(this.icon)).BeginInit();
|
---|
| 54 | this.panel1.SuspendLayout();
|
---|
| 55 | this.SuspendLayout();
|
---|
| 56 | //
|
---|
| 57 | // informationTextBox
|
---|
| 58 | //
|
---|
| 59 | this.informationTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 60 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 61 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 62 | this.informationTextBox.BackColor = System.Drawing.SystemColors.HighlightText;
|
---|
| 63 | this.informationTextBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
---|
| 64 | this.informationTextBox.Location = new System.Drawing.Point(105, 46);
|
---|
| 65 | this.informationTextBox.Name = "informationTextBox";
|
---|
| 66 | this.informationTextBox.ReadOnly = true;
|
---|
| 67 | this.informationTextBox.Size = new System.Drawing.Size(301, 181);
|
---|
| 68 | this.informationTextBox.TabIndex = 0;
|
---|
| 69 | this.informationTextBox.Text = "";
|
---|
| 70 | //
|
---|
| 71 | // messageLabel
|
---|
| 72 | //
|
---|
| 73 | this.messageLabel.AutoSize = true;
|
---|
| 74 | this.messageLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
---|
| 75 | this.messageLabel.Location = new System.Drawing.Point(13, 13);
|
---|
| 76 | this.messageLabel.Name = "messageLabel";
|
---|
| 77 | this.messageLabel.Size = new System.Drawing.Size(0, 13);
|
---|
| 78 | this.messageLabel.TabIndex = 1;
|
---|
| 79 | //
|
---|
| 80 | // okButton
|
---|
| 81 | //
|
---|
| 82 | this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 83 | this.okButton.Location = new System.Drawing.Point(250, 14);
|
---|
| 84 | this.okButton.Name = "okButton";
|
---|
| 85 | this.okButton.Size = new System.Drawing.Size(75, 23);
|
---|
| 86 | this.okButton.TabIndex = 2;
|
---|
| 87 | this.okButton.Text = "Ok";
|
---|
| 88 | this.okButton.UseVisualStyleBackColor = true;
|
---|
| 89 | this.okButton.Click += new System.EventHandler(this.okButton_Click);
|
---|
| 90 | //
|
---|
| 91 | // cancelButton
|
---|
| 92 | //
|
---|
| 93 | this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 94 | this.cancelButton.Location = new System.Drawing.Point(331, 14);
|
---|
| 95 | this.cancelButton.Name = "cancelButton";
|
---|
| 96 | this.cancelButton.Size = new System.Drawing.Size(75, 23);
|
---|
| 97 | this.cancelButton.TabIndex = 3;
|
---|
| 98 | this.cancelButton.Text = "Cancel";
|
---|
| 99 | this.cancelButton.UseVisualStyleBackColor = true;
|
---|
| 100 | this.cancelButton.Click += new System.EventHandler(this.cancelButton_Click);
|
---|
| 101 | //
|
---|
| 102 | // icon
|
---|
| 103 | //
|
---|
| 104 | this.icon.Location = new System.Drawing.Point(31, 66);
|
---|
| 105 | this.icon.Name = "icon";
|
---|
| 106 | this.icon.Size = new System.Drawing.Size(47, 50);
|
---|
| 107 | this.icon.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
|
---|
| 108 | this.icon.TabIndex = 4;
|
---|
| 109 | this.icon.TabStop = false;
|
---|
| 110 | //
|
---|
| 111 | // panel1
|
---|
| 112 | //
|
---|
| 113 | this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 114 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 115 | this.panel1.BackColor = System.Drawing.SystemColors.Control;
|
---|
| 116 | this.panel1.Controls.Add(this.okButton);
|
---|
| 117 | this.panel1.Controls.Add(this.cancelButton);
|
---|
| 118 | this.panel1.Location = new System.Drawing.Point(0, 233);
|
---|
| 119 | this.panel1.Name = "panel1";
|
---|
| 120 | this.panel1.Size = new System.Drawing.Size(418, 50);
|
---|
| 121 | this.panel1.TabIndex = 6;
|
---|
| 122 | //
|
---|
| 123 | // ConfirmationDialog
|
---|
| 124 | //
|
---|
| 125 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 126 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
| 127 | this.BackColor = System.Drawing.SystemColors.HighlightText;
|
---|
| 128 | this.ClientSize = new System.Drawing.Size(418, 282);
|
---|
| 129 | this.Controls.Add(this.panel1);
|
---|
| 130 | this.Controls.Add(this.icon);
|
---|
| 131 | this.Controls.Add(this.messageLabel);
|
---|
| 132 | this.Controls.Add(this.informationTextBox);
|
---|
[3474] | 133 | this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
---|
[3069] | 134 | this.Name = "ConfirmationDialog";
|
---|
| 135 | this.Text = "ConfirmationDialog";
|
---|
| 136 | ((System.ComponentModel.ISupportInitialize)(this.icon)).EndInit();
|
---|
| 137 | this.panel1.ResumeLayout(false);
|
---|
| 138 | this.ResumeLayout(false);
|
---|
| 139 | this.PerformLayout();
|
---|
| 140 |
|
---|
| 141 | }
|
---|
| 142 |
|
---|
| 143 | #endregion
|
---|
| 144 |
|
---|
| 145 | private System.Windows.Forms.RichTextBox informationTextBox;
|
---|
| 146 | private System.Windows.Forms.Label messageLabel;
|
---|
| 147 | private System.Windows.Forms.Button okButton;
|
---|
| 148 | private System.Windows.Forms.Button cancelButton;
|
---|
| 149 | private System.Windows.Forms.PictureBox icon;
|
---|
| 150 | private System.Windows.Forms.Panel panel1;
|
---|
| 151 | }
|
---|
| 152 | } |
---|