-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathWelcome.Designer.cs
88 lines (82 loc) · 3.97 KB
/
Welcome.Designer.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
namespace Microsys.EAI.BizTalkUtilities
{
partial class Welcome
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Welcome));
this.lnkClose = new System.Windows.Forms.LinkLabel();
this.welcomePicture = new System.Windows.Forms.PictureBox();
((System.ComponentModel.ISupportInitialize)(this.welcomePicture)).BeginInit();
this.SuspendLayout();
//
// lnkClose
//
this.lnkClose.ActiveLinkColor = System.Drawing.Color.White;
this.lnkClose.AutoSize = true;
this.lnkClose.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(210)))), ((int)(((byte)(71)))), ((int)(((byte)(38)))));
this.lnkClose.Font = new System.Drawing.Font("Calibri", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lnkClose.ForeColor = System.Drawing.Color.White;
this.lnkClose.LinkColor = System.Drawing.Color.White;
this.lnkClose.Location = new System.Drawing.Point(852, 64);
this.lnkClose.Name = "lnkClose";
this.lnkClose.Size = new System.Drawing.Size(51, 23);
this.lnkClose.TabIndex = 1;
this.lnkClose.TabStop = true;
this.lnkClose.Text = "Close";
this.lnkClose.VisitedLinkColor = System.Drawing.Color.White;
this.lnkClose.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);
//
// welcomePicture
//
this.welcomePicture.Dock = System.Windows.Forms.DockStyle.Fill;
this.welcomePicture.Image = ((System.Drawing.Image)(resources.GetObject("welcomePicture.Image")));
this.welcomePicture.Location = new System.Drawing.Point(0, 0);
this.welcomePicture.Name = "welcomePicture";
this.welcomePicture.Size = new System.Drawing.Size(950, 501);
this.welcomePicture.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.welcomePicture.TabIndex = 0;
this.welcomePicture.TabStop = false;
//
// Welcome
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.AutoScroll = true;
this.ClientSize = new System.Drawing.Size(950, 501);
this.Controls.Add(this.lnkClose);
this.Controls.Add(this.welcomePicture);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "Welcome";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Welcome";
((System.ComponentModel.ISupportInitialize)(this.welcomePicture)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.LinkLabel lnkClose;
private System.Windows.Forms.PictureBox welcomePicture;
}
}