ClipboardWatcher: corporate identity for frmMatch, show overal match and search results for frmTreeview

This commit is contained in:
Jonathan Jenne
2021-01-11 16:10:57 +01:00
parent 5f147c5d75
commit 526e3669ef
8 changed files with 105 additions and 1811 deletions

View File

@@ -108,11 +108,11 @@ Public Class ProfileMatch
End If
End Function
Private Function GetMatchText(IsMatch As Boolean)
Public Function GetMatchText(IsMatch As Boolean)
Return IIf(IsMatch, "MATCH", "NO MATCH")
End Function
Private Function GetMatchColor(IsMatch As Boolean)
Public Function GetMatchColor(IsMatch As Boolean)
Return IIf(IsMatch, Color.LightGreen, Color.LightCoral)
End Function
End Class