Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.PluginInfrastructure/Advanced/ConfirmationDialog.Designer.cs @ 3296

Last change on this file since 3296 was 3090, checked in by gkronber, 14 years ago

Added license headers and set visibility to internal for the classes of the plugin manager. #891 (Refactor GUI for plugin management)

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