For example expose vertical text alignment properties, padding, etc.
Hi Team,
I need to know when the SuggestionsView is visible or not. This appears to be independent of the existing events, so I am requesting an official feature for this to be implemented.
I do have a shaky workaround right now, but it is not reliable and this ultimately requires something from the Telerik UI for Maui side to be implemented.
Thank you!
Jiri
Currently the SuggestionView does not stay open all the time
I can get it to open on focus by running this code and attaching it to the Focused event
Focused += SupporterAutoCompleteSearchBar_Focused;
private void SupporterAutoCompleteSearchBar_Focused(object sender, FocusEventArgs e)
{
ShowSuggestions();
}