ZooFlow: Add special case when no profiles are configured

This commit is contained in:
Jonathan Jenne
2021-01-20 14:15:09 +01:00
parent 1fe39022c4
commit 0a77e55b7d
3 changed files with 14 additions and 19 deletions

View File

@@ -2,12 +2,6 @@
Namespace ClipboardWatcher
Public Class State
Public Enum EnumStatus
OK
NoProfilesConfigured
Exception
End Enum
Public Property UserProfiles As DataTable = Nothing
Public Property ProfileProcesses As DataTable = Nothing
Public Property ProfileWindows As DataTable = Nothing
@@ -20,6 +14,5 @@ Namespace ClipboardWatcher
Public Property CurrentClipboardContents As String = String.Empty
Public Property MonitoringActive As Boolean = False
Public Property Status As EnumStatus
End Class
End Namespace