I use this code to show a screen modally on iPad:
var ms as new Screen1
ms.ShowModal(self, MobileScreen.ModalPresentationStyles.Popover, true)
- How can I set height & width of Screen1? It’s very small.
- How can I make sure Screen1 is only closed by tapping a button inside the screen? Right now, if I tap somewhere outside of Screen1, the screen is closed. I know there are apps where you can tap outside and the screen doesn’t close.
Thank you!