Detect keyboard deployment
问题 I am porting an WP7 Silverlight application to the UWP Windows 10 mobile platform. In my old code I used to check if the keyboard was deployed in the following way: if (DeviceStatus.IsKeyboardDeployed) { // do stuff } else { //do stuff } Now I want to do the same in WM10 but there does not seem to be an equivalent of this function anymore. I already checked the following link And Googled but cannot find it. Does anybody know if you still can detect this in any way? 回答1: I think you can make