Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 4891 was 3784, checked in by mkommend, 14 years ago

corrected ChartControlsWarning (ticket #893)

File size: 4.8 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.iconLabel = new System.Windows.Forms.Label();
47      this.okButton = new System.Windows.Forms.Button();
48      this.linkLabel = new System.Windows.Forms.LinkLabel();
49      this.label1 = new System.Windows.Forms.Label();
50      this.SuspendLayout();
51      //
52      // iconLabel
53      //
54      this.iconLabel.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Warning;
55      this.iconLabel.Location = new System.Drawing.Point(12, 9);
56      this.iconLabel.Name = "iconLabel";
57      this.iconLabel.Size = new System.Drawing.Size(21, 22);
58      this.iconLabel.TabIndex = 1;
59      //
60      // okButton
61      //
62      this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
63      this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
64      this.okButton.Location = new System.Drawing.Point(234, 59);
65      this.okButton.Name = "okButton";
66      this.okButton.Size = new System.Drawing.Size(75, 23);
67      this.okButton.TabIndex = 6;
68      this.okButton.Text = "&Close";
69      this.okButton.UseVisualStyleBackColor = true;
70      //
71      // linkLabel
72      //
73      this.linkLabel.AutoSize = true;
74      this.linkLabel.Location = new System.Drawing.Point(39, 66);
75      this.linkLabel.Name = "linkLabel";
76      this.linkLabel.Size = new System.Drawing.Size(141, 13);
77      this.linkLabel.TabIndex = 9;
78      this.linkLabel.TabStop = true;
79      this.linkLabel.Text = "MS Chart Controls download";
80      this.linkLabel.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel_LinkClicked);
81      //
82      // label1
83      //
84      this.label1.Location = new System.Drawing.Point(39, 9);
85      this.label1.Name = "label1";
86      this.label1.Size = new System.Drawing.Size(255, 33);
87      this.label1.TabIndex = 10;
88      this.label1.Text = "Microsoft Chart Controls are not properly installed. Please download and install " +
89          "them.";
90      //
91      // ChartControlsWarning
92      //
93      this.AcceptButton = this.okButton;
94      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
95      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
96      this.CancelButton = this.okButton;
97      this.ClientSize = new System.Drawing.Size(321, 94);
98      this.Controls.Add(this.label1);
99      this.Controls.Add(this.linkLabel);
100      this.Controls.Add(this.okButton);
101      this.Controls.Add(this.iconLabel);
102      this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
103      this.Icon = HeuristicLab.Common.Resources.HeuristicLab.Icon;
104      this.MaximizeBox = false;
105      this.MinimizeBox = false;
106      this.Name = "ChartControlsWarning";
107      this.ShowInTaskbar = false;
108      this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
109      this.Text = "Warning";
110      this.ResumeLayout(false);
111      this.PerformLayout();
112
113    }
114
115    #endregion
116
117    private System.Windows.Forms.Label iconLabel;
118    private System.Windows.Forms.Button okButton;
119    private System.Windows.Forms.LinkLabel linkLabel;
120    private System.Windows.Forms.Label label1;
121  }
122}
Note: See TracBrowser for help on using the repository browser.