Hi,
I test my application on a tablet, and I found out that when I select one item from the list, it might open the keyboard but not every time.
I wonder if there is a way to prevent that.
I tried with InputPane.TryHide() but that doesn't seem to work.
Regards,
Charles
edit: I find a way with InputPane.GetForCurrentView().Showing += MainPage_Showing;
private void MainPage_Showing( InputPane sender, InputPaneVisibilityEventArgs args){
InputPane.GetForCurrentView().TryHide();
}
But there is a problem because we see the keyboard showing and hiding, that's quick but we see it.
So I'm looking either for another solution or for a way to hide the animation.
Regards,
Charles