I have an Xamarin UWP application created for assigned access (Kiosk mode). Now on a new screen the default scaling is set to 150%, my app is looking good on 100%. Has someone found a way to change the default scaling of the created kiosk user?
Tried to change the DPI settings using registry edition without luck.
UWP does not have API to set the scale in the app directly. But UWP can get the current scale of the system with DisplayInformation, so we can modify the size of the control according to the current scale size.
You can refer to the official sample DpiScaling. The following is a solution based on the sample. The Button control maintains the same size under different scales by controlling the Button's property
FontSize.