March 2018
Beginner to intermediate
410 pages
10h 40m
English
If we don't have access to this location information, we will use a simple approach of displaying a dialog to the user. There the user can provide the required information:
else
{
try
{
await MainPage.Instance.Dispatcher.RunAsync(
CoreDispatcherPriority.Normal, async () =>
{
try
{
RegistrationDialog Dialog = new RegistrationDialog();
switch (await Dialog.ShowAsync())
{
If the user fills in the form and presses the Register button, the information is persisted to be used the next time the device is restarted. If the user presses the Cancel button, the registration process starts again (since registration in our simple example is required). The form included in the projects looks like the one shown in the following ...
Read now
Unlock full access