Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.PluginInfrastructure/Starter/SplashScreen.Designer.cs @ 3786

Last change on this file since 3786 was 3786, checked in by swagner, 14 years ago

Adapted size of splash screen (#1000)

File size: 5.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
21
22using HeuristicLab.PluginInfrastructure;
23namespace HeuristicLab.PluginInfrastructure.Starter {
24  partial class SplashScreen {
25    /// <summary>
26    /// Required designer variable.
27    /// </summary>
28    private System.ComponentModel.IContainer components = null;
29
30    /// <summary>
31    /// Clean up any resources being used.
32    /// </summary>
33    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
34    protected override void Dispose(bool disposing) {
35
36      if (disposing && (components != null)) {
37        components.Dispose();
38      }
39      base.Dispose(disposing);
40    }
41
42
43    #region Windows Form Designer generated code
44
45    /// <summary>
46    /// Required method for Designer support - do not modify
47    /// the contents of this method with the code editor.
48    /// </summary>
49    private void InitializeComponent() {
50      this.versionLabel = new System.Windows.Forms.Label();
51      this.infoLabel = new System.Windows.Forms.Label();
52      this.copyrightLabel = new System.Windows.Forms.Label();
53      this.pictureBox = new System.Windows.Forms.PictureBox();
54      ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).BeginInit();
55      this.SuspendLayout();
56      //
57      // versionLabel
58      //
59      this.versionLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
60      this.versionLabel.Location = new System.Drawing.Point(400, 115);
61      this.versionLabel.Name = "versionLabel";
62      this.versionLabel.Size = new System.Drawing.Size(186, 16);
63      this.versionLabel.TabIndex = 1;
64      this.versionLabel.Text = "Version ";
65      this.versionLabel.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
66      //
67      // infoLabel
68      //
69      this.infoLabel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
70                  | System.Windows.Forms.AnchorStyles.Right)));
71      this.infoLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
72      this.infoLabel.ForeColor = System.Drawing.Color.DarkOrange;
73      this.infoLabel.Location = new System.Drawing.Point(0, 83);
74      this.infoLabel.Name = "infoLabel";
75      this.infoLabel.Size = new System.Drawing.Size(598, 30);
76      this.infoLabel.TabIndex = 6;
77      this.infoLabel.Text = "Startup Information";
78      this.infoLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
79      //
80      // copyrightLabel
81      //
82      this.copyrightLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
83      this.copyrightLabel.Location = new System.Drawing.Point(12, 115);
84      this.copyrightLabel.Name = "copyrightLabel";
85      this.copyrightLabel.Size = new System.Drawing.Size(186, 16);
86      this.copyrightLabel.TabIndex = 2;
87      this.copyrightLabel.Text = "Copyright";
88      this.copyrightLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
89      //
90      // pictureBox
91      //
92      this.pictureBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
93                  | System.Windows.Forms.AnchorStyles.Right)));
94      this.pictureBox.Image = global::HeuristicLab.PluginInfrastructure.Resources.HeuristicLabBanner;
95      this.pictureBox.Location = new System.Drawing.Point(0, 0);
96      this.pictureBox.Name = "pictureBox";
97      this.pictureBox.Size = new System.Drawing.Size(598, 80);
98      this.pictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
99      this.pictureBox.TabIndex = 0;
100      this.pictureBox.TabStop = false;
101      //
102      // SplashScreen
103      //
104      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
105      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
106      this.BackColor = System.Drawing.Color.White;
107      this.ClientSize = new System.Drawing.Size(598, 134);
108      this.ControlBox = false;
109      this.Controls.Add(this.infoLabel);
110      this.Controls.Add(this.pictureBox);
111      this.Controls.Add(this.versionLabel);
112      this.Controls.Add(this.copyrightLabel);
113      this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
114      this.MaximizeBox = false;
115      this.MinimizeBox = false;
116      this.Name = "SplashScreen";
117      this.Opacity = 0.99;
118      this.ShowInTaskbar = false;
119      this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
120      ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).EndInit();
121      this.ResumeLayout(false);
122
123    }
124
125    #endregion
126
127    private System.Windows.Forms.PictureBox pictureBox;
128    private System.Windows.Forms.Label versionLabel;
129    private System.Windows.Forms.Label copyrightLabel;
130    private System.Windows.Forms.Label infoLabel;
131  }
132}
Note: See TracBrowser for help on using the repository browser.