|
@@ -34,6 +34,7 @@ Partial Class SplashScreen1
|
34
|
34
|
Me.Copyright = New System.Windows.Forms.Label()
|
35
|
35
|
Me.ApplicationTitle = New System.Windows.Forms.Label()
|
36
|
36
|
Me.Timer1 = New System.Windows.Forms.Timer(Me.components)
|
|
37
|
+ Me.Label1 = New System.Windows.Forms.Label()
|
37
|
38
|
Me.MainLayoutPanel.SuspendLayout()
|
38
|
39
|
Me.DetailsLayoutPanel.SuspendLayout()
|
39
|
40
|
Me.SuspendLayout()
|
|
@@ -46,7 +47,8 @@ Partial Class SplashScreen1
|
46
|
47
|
Me.MainLayoutPanel.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 243.0!))
|
47
|
48
|
Me.MainLayoutPanel.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 100.0!))
|
48
|
49
|
Me.MainLayoutPanel.Controls.Add(Me.DetailsLayoutPanel, 1, 1)
|
49
|
|
- Me.MainLayoutPanel.Controls.Add(Me.ApplicationTitle, 1, 0)
|
|
50
|
+ Me.MainLayoutPanel.Controls.Add(Me.ApplicationTitle, 0, 0)
|
|
51
|
+ Me.MainLayoutPanel.Controls.Add(Me.Label1, 0, 1)
|
50
|
52
|
Me.MainLayoutPanel.Dock = System.Windows.Forms.DockStyle.Fill
|
51
|
53
|
Me.MainLayoutPanel.Location = New System.Drawing.Point(0, 0)
|
52
|
54
|
Me.MainLayoutPanel.Name = "MainLayoutPanel"
|
|
@@ -98,9 +100,9 @@ Partial Class SplashScreen1
|
98
|
100
|
Me.ApplicationTitle.Anchor = System.Windows.Forms.AnchorStyles.None
|
99
|
101
|
Me.ApplicationTitle.BackColor = System.Drawing.Color.Transparent
|
100
|
102
|
Me.ApplicationTitle.Font = New System.Drawing.Font("Microsoft Sans Serif", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
101
|
|
- Me.ApplicationTitle.Location = New System.Drawing.Point(246, 3)
|
|
103
|
+ Me.ApplicationTitle.Location = New System.Drawing.Point(3, 3)
|
102
|
104
|
Me.ApplicationTitle.Name = "ApplicationTitle"
|
103
|
|
- Me.ApplicationTitle.Size = New System.Drawing.Size(247, 212)
|
|
105
|
+ Me.ApplicationTitle.Size = New System.Drawing.Size(237, 212)
|
104
|
106
|
Me.ApplicationTitle.TabIndex = 0
|
105
|
107
|
Me.ApplicationTitle.Text = "應用程式標題"
|
106
|
108
|
Me.ApplicationTitle.TextAlign = System.Drawing.ContentAlignment.BottomLeft
|
|
@@ -109,6 +111,17 @@ Partial Class SplashScreen1
|
109
|
111
|
'
|
110
|
112
|
Me.Timer1.Interval = 1000
|
111
|
113
|
'
|
|
114
|
+ 'Label1
|
|
115
|
+ '
|
|
116
|
+ Me.Label1.Anchor = System.Windows.Forms.AnchorStyles.None
|
|
117
|
+ Me.Label1.BackColor = System.Drawing.Color.Transparent
|
|
118
|
+ Me.Label1.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
|
119
|
+ Me.Label1.Location = New System.Drawing.Point(3, 240)
|
|
120
|
+ Me.Label1.Name = "Label1"
|
|
121
|
+ Me.Label1.Size = New System.Drawing.Size(237, 40)
|
|
122
|
+ Me.Label1.TabIndex = 3
|
|
123
|
+ Me.Label1.Text = "著作權"
|
|
124
|
+ '
|
112
|
125
|
'SplashScreen1
|
113
|
126
|
'
|
114
|
127
|
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 12.0!)
|
|
@@ -129,4 +142,5 @@ Partial Class SplashScreen1
|
129
|
142
|
End Sub
|
130
|
143
|
|
131
|
144
|
Friend WithEvents Timer1 As Timer
|
|
145
|
+ Friend WithEvents Label1 As Label
|
132
|
146
|
End Class
|