How can I show a message box with an input dialog on Windows Phone 8.1 (Universal App)?
2
votes
3 Answers
2
votes
In a Windows Phone Runtime app (but not on Windows) you can use a ContentDialog to create a full-screen message box with whatever content you need. This can include input controls.
If you add a new content dialog from the Add New Item... menu it will generate a sample template to input an email address and password. Modify that to fit your input, new one up, then await its ShowAsync like you would a MessageDialog.
1
votes