-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSplashScreen1.Designer.vb
More file actions
129 lines (123 loc) · 5.4 KB
/
SplashScreen1.Designer.vb
File metadata and controls
129 lines (123 loc) · 5.4 KB
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Class SplashScreen1
Inherits System.Windows.Forms.Form
'Form overrides dispose to clean up the component list.
<System.Diagnostics.DebuggerNonUserCode()> _
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
Try
If disposing AndAlso components IsNot Nothing Then
components.Dispose()
End If
Finally
MyBase.Dispose(disposing)
End Try
End Sub
Friend WithEvents ApplicationTitle As System.Windows.Forms.Label
Friend WithEvents Copyright As System.Windows.Forms.Label
Friend WithEvents MainLayoutPanel As System.Windows.Forms.TableLayoutPanel
Friend WithEvents DetailsLayoutPanel As System.Windows.Forms.TableLayoutPanel
'Required by the Windows Form Designer
Private components As System.ComponentModel.IContainer
'NOTE: The following procedure is required by the Windows Form Designer
'It can be modified using the Windows Form Designer.
'Do not modify it using the code editor.
<System.Diagnostics.DebuggerStepThrough()> _
Private Sub InitializeComponent()
MainLayoutPanel = New TableLayoutPanel()
ApplicationTitle = New Label()
LogoPictureBox = New PictureBox()
DetailsLayoutPanel = New TableLayoutPanel()
Copyright = New Label()
MainLayoutPanel.SuspendLayout()
CType(LogoPictureBox, ComponentModel.ISupportInitialize).BeginInit()
DetailsLayoutPanel.SuspendLayout()
SuspendLayout()
'
' MainLayoutPanel
'
MainLayoutPanel.BackgroundImageLayout = ImageLayout.Zoom
MainLayoutPanel.ColumnCount = 2
MainLayoutPanel.ColumnStyles.Add(New ColumnStyle(SizeType.Absolute, 243F))
MainLayoutPanel.ColumnStyles.Add(New ColumnStyle(SizeType.Absolute, 100F))
MainLayoutPanel.Controls.Add(ApplicationTitle, 1, 0)
MainLayoutPanel.Controls.Add(LogoPictureBox, 0, 0)
MainLayoutPanel.Controls.Add(DetailsLayoutPanel, 1, 1)
MainLayoutPanel.Dock = DockStyle.Fill
MainLayoutPanel.Location = New Point(0, 0)
MainLayoutPanel.Name = "MainLayoutPanel"
MainLayoutPanel.RowCount = 2
MainLayoutPanel.RowStyles.Add(New RowStyle(SizeType.Absolute, 105F))
MainLayoutPanel.RowStyles.Add(New RowStyle(SizeType.Absolute, 151F))
MainLayoutPanel.Size = New Size(496, 221)
MainLayoutPanel.TabIndex = 0
'
' ApplicationTitle
'
ApplicationTitle.Anchor = AnchorStyles.None
ApplicationTitle.BackColor = Color.Transparent
ApplicationTitle.Font = New Font("Microsoft Sans Serif", 18F, FontStyle.Regular, GraphicsUnit.Point)
ApplicationTitle.Location = New Point(273, 37)
ApplicationTitle.Name = "ApplicationTitle"
ApplicationTitle.Size = New Size(192, 30)
ApplicationTitle.TabIndex = 0
ApplicationTitle.Text = "Application Title"
ApplicationTitle.TextAlign = ContentAlignment.BottomLeft
'
' LogoPictureBox
'
LogoPictureBox.Image = My.Resources.Resources.logo_blue
LogoPictureBox.Location = New Point(4, 3)
LogoPictureBox.Margin = New Padding(4, 3, 4, 3)
LogoPictureBox.Name = "LogoPictureBox"
LogoPictureBox.Size = New Size(235, 99)
LogoPictureBox.SizeMode = PictureBoxSizeMode.Zoom
LogoPictureBox.TabIndex = 2
LogoPictureBox.TabStop = False
'
' DetailsLayoutPanel
'
DetailsLayoutPanel.Anchor = AnchorStyles.None
DetailsLayoutPanel.BackColor = Color.Transparent
DetailsLayoutPanel.ColumnCount = 1
DetailsLayoutPanel.ColumnStyles.Add(New ColumnStyle(SizeType.Absolute, 142F))
DetailsLayoutPanel.ColumnStyles.Add(New ColumnStyle(SizeType.Absolute, 142F))
DetailsLayoutPanel.Controls.Add(Copyright, 0, 1)
DetailsLayoutPanel.Location = New Point(246, 108)
DetailsLayoutPanel.Name = "DetailsLayoutPanel"
DetailsLayoutPanel.RowStyles.Add(New RowStyle())
DetailsLayoutPanel.RowStyles.Add(New RowStyle(SizeType.Percent, 55.86207F))
DetailsLayoutPanel.Size = New Size(247, 145)
DetailsLayoutPanel.TabIndex = 1
'
' Copyright
'
Copyright.Anchor = AnchorStyles.None
Copyright.BackColor = Color.Transparent
Copyright.Font = New Font("Microsoft Sans Serif", 9F, FontStyle.Regular, GraphicsUnit.Point)
Copyright.Location = New Point(3, 52)
Copyright.Name = "Copyright"
Copyright.Size = New Size(241, 40)
Copyright.TabIndex = 2
Copyright.Text = "Copyright"
'
' SplashScreen1
'
AutoScaleDimensions = New SizeF(7F, 15F)
AutoScaleMode = AutoScaleMode.Font
BackColor = SystemColors.Window
ClientSize = New Size(496, 221)
ControlBox = False
Controls.Add(MainLayoutPanel)
FormBorderStyle = FormBorderStyle.FixedSingle
MaximizeBox = False
MinimizeBox = False
Name = "SplashScreen1"
ShowInTaskbar = False
StartPosition = FormStartPosition.CenterScreen
MainLayoutPanel.ResumeLayout(False)
CType(LogoPictureBox, ComponentModel.ISupportInitialize).EndInit()
DetailsLayoutPanel.ResumeLayout(False)
ResumeLayout(False)
End Sub
Friend WithEvents LogoPictureBox As PictureBox
End Class