Free cookie consent management tool by TermsFeed Policy Generator

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

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

Improved dialogs in plugin manager. #891 (Refactor GUI for plugin management)

File size: 5.8 KB
RevLine 
[3069]1namespace HeuristicLab.PluginInfrastructure.Advanced {
2  partial class ConfirmationDialog {
3    /// <summary>
4    /// Required designer variable.
5    /// </summary>
6    private System.ComponentModel.IContainer components = null;
7
8    /// <summary>
9    /// Clean up any resources being used.
10    /// </summary>
11    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
12    protected override void Dispose(bool disposing) {
13      if (disposing && (components != null)) {
14        components.Dispose();
15      }
16      base.Dispose(disposing);
17    }
18
19    #region Windows Form Designer generated code
20
21    /// <summary>
22    /// Required method for Designer support - do not modify
23    /// the contents of this method with the code editor.
24    /// </summary>
25    private void InitializeComponent() {
26      this.informationTextBox = new System.Windows.Forms.RichTextBox();
27      this.messageLabel = new System.Windows.Forms.Label();
28      this.okButton = new System.Windows.Forms.Button();
29      this.cancelButton = new System.Windows.Forms.Button();
30      this.icon = new System.Windows.Forms.PictureBox();
31      this.panel1 = new System.Windows.Forms.Panel();
32      ((System.ComponentModel.ISupportInitialize)(this.icon)).BeginInit();
33      this.panel1.SuspendLayout();
34      this.SuspendLayout();
35      //
36      // informationTextBox
37      //
38      this.informationTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
39                  | System.Windows.Forms.AnchorStyles.Left)
40                  | System.Windows.Forms.AnchorStyles.Right)));
41      this.informationTextBox.BackColor = System.Drawing.SystemColors.HighlightText;
42      this.informationTextBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
43      this.informationTextBox.Location = new System.Drawing.Point(105, 46);
44      this.informationTextBox.Name = "informationTextBox";
45      this.informationTextBox.ReadOnly = true;
46      this.informationTextBox.Size = new System.Drawing.Size(301, 181);
47      this.informationTextBox.TabIndex = 0;
48      this.informationTextBox.Text = "";
49      //
50      // messageLabel
51      //
52      this.messageLabel.AutoSize = true;
53      this.messageLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
54      this.messageLabel.Location = new System.Drawing.Point(13, 13);
55      this.messageLabel.Name = "messageLabel";
56      this.messageLabel.Size = new System.Drawing.Size(0, 13);
57      this.messageLabel.TabIndex = 1;
58      //
59      // okButton
60      //
61      this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
62      this.okButton.Location = new System.Drawing.Point(250, 14);
63      this.okButton.Name = "okButton";
64      this.okButton.Size = new System.Drawing.Size(75, 23);
65      this.okButton.TabIndex = 2;
66      this.okButton.Text = "Ok";
67      this.okButton.UseVisualStyleBackColor = true;
68      this.okButton.Click += new System.EventHandler(this.okButton_Click);
69      //
70      // cancelButton
71      //
72      this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
73      this.cancelButton.Location = new System.Drawing.Point(331, 14);
74      this.cancelButton.Name = "cancelButton";
75      this.cancelButton.Size = new System.Drawing.Size(75, 23);
76      this.cancelButton.TabIndex = 3;
77      this.cancelButton.Text = "Cancel";
78      this.cancelButton.UseVisualStyleBackColor = true;
79      this.cancelButton.Click += new System.EventHandler(this.cancelButton_Click);
80      //
81      // icon
82      //
83      this.icon.Location = new System.Drawing.Point(31, 66);
84      this.icon.Name = "icon";
85      this.icon.Size = new System.Drawing.Size(47, 50);
86      this.icon.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
87      this.icon.TabIndex = 4;
88      this.icon.TabStop = false;
89      //
90      // panel1
91      //
92      this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
93                  | System.Windows.Forms.AnchorStyles.Right)));
94      this.panel1.BackColor = System.Drawing.SystemColors.Control;
95      this.panel1.Controls.Add(this.okButton);
96      this.panel1.Controls.Add(this.cancelButton);
97      this.panel1.Location = new System.Drawing.Point(0, 233);
98      this.panel1.Name = "panel1";
99      this.panel1.Size = new System.Drawing.Size(418, 50);
100      this.panel1.TabIndex = 6;
101      //
102      // ConfirmationDialog
103      //
104      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
105      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
106      this.BackColor = System.Drawing.SystemColors.HighlightText;
107      this.ClientSize = new System.Drawing.Size(418, 282);
108      this.Controls.Add(this.panel1);
109      this.Controls.Add(this.icon);
110      this.Controls.Add(this.messageLabel);
111      this.Controls.Add(this.informationTextBox);
112      this.Name = "ConfirmationDialog";
113      this.Text = "ConfirmationDialog";
114      ((System.ComponentModel.ISupportInitialize)(this.icon)).EndInit();
115      this.panel1.ResumeLayout(false);
116      this.ResumeLayout(false);
117      this.PerformLayout();
118
119    }
120
121    #endregion
122
123    private System.Windows.Forms.RichTextBox informationTextBox;
124    private System.Windows.Forms.Label messageLabel;
125    private System.Windows.Forms.Button okButton;
126    private System.Windows.Forms.Button cancelButton;
127    private System.Windows.Forms.PictureBox icon;
128    private System.Windows.Forms.Panel panel1;
129  }
130}
Note: See TracBrowser for help on using the repository browser.