Zooflow: Fix theming, show overlay for keyup event in search

This commit is contained in:
Jonathan Jenne
2022-02-22 16:36:56 +01:00
parent bd05410f4a
commit 5186901c7a
7 changed files with 76 additions and 7 deletions

View File

@@ -282,7 +282,16 @@ Public Class frmFlowSearch1
If txtSearchInput.Text = String.Empty Then
Return
End If
Await Search_GO()
Dim oHandle = SplashScreenManager.ShowOverlayForm(Me)
Try
Await Search_GO()
Catch ex As Exception
Logger.Error(ex)
Finally
SplashScreenManager.CloseOverlayForm(oHandle)
End Try
End If
End Function
Private Function GetResultWindowString(SearchContent As String) As String