Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Optimizer/3.3/ChartControlsWarning.Designer.cs @ 3778

Last change on this file since 3778 was 3776, checked in by mkommend, 14 years ago

implemented check for MS ChartControls (ticket #893)

File size: 5.4 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.Optimizer {
22  partial class ChartControlsWarning {
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.messageTextBox = new System.Windows.Forms.TextBox();
47      this.iconLabel = new System.Windows.Forms.Label();
48      this.okButton = new System.Windows.Forms.Button();
49      this.linkLabel = new System.Windows.Forms.LinkLabel();
50      this.SuspendLayout();
51      //
52      // messageTextBox
53      //
54      this.messageTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
55                  | System.Windows.Forms.AnchorStyles.Right)));
56      this.messageTextBox.BackColor = System.Drawing.SystemColors.Control;
57      this.messageTextBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
58      this.messageTextBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
59      this.messageTextBox.Location = new System.Drawing.Point(39, 12);
60      this.messageTextBox.Multiline = true;
61      this.messageTextBox.Name = "messageTextBox";
62      this.messageTextBox.ReadOnly = true;
63      this.messageTextBox.Size = new System.Drawing.Size(284, 27);
64      this.messageTextBox.TabIndex = 3;
65      this.messageTextBox.Text = "Microsoft Chart Controls are not properly installed. Please download and install " +
66          "them.";
67      //
68      // iconLabel
69      //
70      this.iconLabel.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Warning;
71      this.iconLabel.Location = new System.Drawing.Point(12, 17);
72      this.iconLabel.Name = "iconLabel";
73      this.iconLabel.Size = new System.Drawing.Size(21, 22);
74      this.iconLabel.TabIndex = 1;
75      //
76      // okButton
77      //
78      this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
79      this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
80      this.okButton.Location = new System.Drawing.Point(248, 41);
81      this.okButton.Name = "okButton";
82      this.okButton.Size = new System.Drawing.Size(75, 23);
83      this.okButton.TabIndex = 6;
84      this.okButton.Text = "&OK";
85      this.okButton.UseVisualStyleBackColor = true;
86      //
87      // linkLabel
88      //
89      this.linkLabel.AutoSize = true;
90      this.linkLabel.Location = new System.Drawing.Point(36, 42);
91      this.linkLabel.Name = "linkLabel";
92      this.linkLabel.Size = new System.Drawing.Size(141, 13);
93      this.linkLabel.TabIndex = 9;
94      this.linkLabel.TabStop = true;
95      this.linkLabel.Text = "MS Chart Controls download";
96      this.linkLabel.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel_LinkClicked);
97      //
98      // ChartControlsWarning
99      //
100      this.AcceptButton = this.okButton;
101      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
102      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
103      this.ClientSize = new System.Drawing.Size(335, 70);
104      this.Controls.Add(this.linkLabel);
105      this.Controls.Add(this.okButton);
106      this.Controls.Add(this.iconLabel);
107      this.Controls.Add(this.messageTextBox);
108      this.Icon = HeuristicLab.Common.Resources.HeuristicLab.Icon;
109      this.MaximizeBox = false;
110      this.MinimizeBox = false;
111      this.Name = "ChartControlsWarning";
112      this.ShowInTaskbar = false;
113      this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
114      this.Text = "Warning";
115      this.ResumeLayout(false);
116      this.PerformLayout();
117
118    }
119
120    #endregion
121
122    private System.Windows.Forms.TextBox messageTextBox;
123    private System.Windows.Forms.Label iconLabel;
124    private System.Windows.Forms.Button okButton;
125    private System.Windows.Forms.LinkLabel linkLabel;
126  }
127}
Note: See TracBrowser for help on using the repository browser.