Hi Nathan,
We can use
InputPane.OccludedRect property to know if the touch keyboard is opening or not. This property shows the region of touch keyboard. If the keyboard is opening, we can see them in the object. You can see the following code snippet.
var touchkeyboard = InputPane.GetForCurrentView().OccludedRect;
if (touchkeyboard.Height != 0 || touchkeyboard.Width != 0)
{
//open
}
else {
//close
}
If you still have questions, please post more information about your scenario.
Regards,
We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place. Click HERE to participate
the survey.