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

@@ -212,6 +212,12 @@ Public Class frmFlowForm
Logger = My.LogConfig.GetLogger()
ErrorHandler = New BaseErrorHandler(My.LogConfig, Logger, Me)
If My.Application.Palette = "" Then
UserLookAndFeel.Default.SetSkinStyle(My.Application.Skin)
Else
UserLookAndFeel.Default.SetSkinStyle(My.Application.Skin, My.Application.Palette)
End If
' === Setup Timers ===
AddHandler TimerRefreshData.Tick, AddressOf TimerRefreshData_Tick
TimerRefreshData.Enabled = True