fix focus state for datepicker/lookup control

This commit is contained in:
Jonathan Jenne 2020-05-25 12:00:01 +02:00
parent be834fae84
commit d4b4c2078b

View File

@ -75,6 +75,7 @@ Public Class ClassControls
.IndexType = DataType .IndexType = DataType
} }
} }
oControl.Properties.AppearanceFocused.BackColor = Color.Lime
If Not String.IsNullOrEmpty(Vorgabe) Then If Not String.IsNullOrEmpty(Vorgabe) Then
Dim oDefaultValues As New List(Of String) Dim oDefaultValues As New List(Of String)
@ -372,6 +373,7 @@ Public Class ClassControls
.IndexType = DataType .IndexType = DataType
} }
} }
oPicker.Properties.AppearanceFocused.BackColor = Color.Lime
Return oPicker Return oPicker
End Function End Function