We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a67764 commit 5cca9e1Copy full SHA for 5cca9e1
Panels/Startup/SplashScreen.vb
@@ -1,11 +1,23 @@
1
Imports System.Drawing.Drawing2D
2
+Imports Microsoft.Win32
3
+
4
Public Class SplashScreen
5
6
Dim opacityFade As Single
7
8
Private Sub SplashScreen_Load(sender As Object, e As EventArgs) Handles MyBase.Load
9
If MainForm.dtBranch.Contains("preview") Then PreviewFlag.Visible = True
- Timer1.Enabled = True
10
+ Try
11
+ Dim wmReg As RegistryKey = Registry.CurrentUser.OpenSubKey("Control Panel\Desktop\WindowMetrics")
12
+ If wmReg.GetValue("MinAnimate") = 1 Then
13
+ Timer1.Enabled = True
14
+ Else
15
+ Opacity = 1
16
+ End If
17
+ wmReg.Close()
18
+ Catch ex As Exception
19
20
+ End Try
21
Refresh()
22
End Sub
23
0 commit comments