Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive.Azure/HeuristicLab.PluginInfrastructure/3.3/ErrorHandling/FrameworkVersionErrorDialog.Designer.cs @ 7270

Last change on this file since 7270 was 7270, checked in by spimming, 12 years ago

#1680:

  • merged changes from trunk into branch
File size: 5.7 KB
Line 
1#region License Information
2/* HeuristicLab
3* Copyright (C) 2002-2012 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.PluginInfrastructure {
23  partial class FrameworkVersionErrorDialog {
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.iconLabel = new System.Windows.Forms.Label();
48      this.closeButton = new System.Windows.Forms.Button();
49      this.linkLabel = new System.Windows.Forms.LinkLabel();
50      this.label = new System.Windows.Forms.Label();
51      this.SuspendLayout();
52      //
53      // iconLabel
54      //
55      this.iconLabel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
56                  | System.Windows.Forms.AnchorStyles.Left)));
57      this.iconLabel.Image = global::HeuristicLab.PluginInfrastructure.Resources.Error;
58      this.iconLabel.ImageAlign = System.Drawing.ContentAlignment.TopLeft;
59      this.iconLabel.Location = new System.Drawing.Point(12, 9);
60      this.iconLabel.Name = "iconLabel";
61      this.iconLabel.Size = new System.Drawing.Size(50, 98);
62      this.iconLabel.TabIndex = 0;
63      //
64      // closeButton
65      //
66      this.closeButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
67      this.closeButton.DialogResult = System.Windows.Forms.DialogResult.OK;
68      this.closeButton.Location = new System.Drawing.Point(294, 81);
69      this.closeButton.Name = "closeButton";
70      this.closeButton.Size = new System.Drawing.Size(75, 23);
71      this.closeButton.TabIndex = 3;
72      this.closeButton.Text = "&Close";
73      this.closeButton.UseVisualStyleBackColor = true;
74      this.closeButton.Click += new System.EventHandler(this.cancelButton_Click);
75      //
76      // linkLabel
77      //
78      this.linkLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
79                  | System.Windows.Forms.AnchorStyles.Left)
80                  | System.Windows.Forms.AnchorStyles.Right)));
81      this.linkLabel.Location = new System.Drawing.Point(68, 52);
82      this.linkLabel.Name = "linkLabel";
83      this.linkLabel.Size = new System.Drawing.Size(301, 26);
84      this.linkLabel.TabIndex = 2;
85      this.linkLabel.TabStop = true;
86      this.linkLabel.Text = "Download Microsoft .NET Framework 4 (Full Profile)";
87      this.linkLabel.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel_LinkClicked);
88      //
89      // label
90      //
91      this.label.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
92                  | System.Windows.Forms.AnchorStyles.Right)));
93      this.label.Location = new System.Drawing.Point(68, 9);
94      this.label.Name = "label";
95      this.label.Size = new System.Drawing.Size(301, 43);
96      this.label.TabIndex = 1;
97      this.label.Text = "The Microsoft .NET Framework 4 (Full Profile) is not properly installed on your s" +
98          "ystem. Please download and install it.";
99      //
100      // FrameworkVersionErrorDialog
101      //
102      this.AcceptButton = this.closeButton;
103      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
104      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
105      this.CancelButton = this.closeButton;
106      this.ClientSize = new System.Drawing.Size(381, 116);
107      this.Controls.Add(this.label);
108      this.Controls.Add(this.linkLabel);
109      this.Controls.Add(this.closeButton);
110      this.Controls.Add(this.iconLabel);
111      this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
112      this.Icon = global::HeuristicLab.PluginInfrastructure.Resources.HeuristicLab;
113      this.MaximizeBox = false;
114      this.MinimizeBox = false;
115      this.Name = "FrameworkVersionErrorDialog";
116      this.ShowInTaskbar = false;
117      this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
118      this.Text = "Error";
119      this.ResumeLayout(false);
120
121    }
122
123    #endregion
124
125    private System.Windows.Forms.Label iconLabel;
126    private System.Windows.Forms.Button closeButton;
127    private System.Windows.Forms.LinkLabel linkLabel;
128    private System.Windows.Forms.Label label;
129  }
130}
Note: See TracBrowser for help on using the repository browser.