Exemplo n.º 1
0
        protected override async void OnClick()
        {
            //If you run this in the DEBUGGER you will NOT see the dialog
            var ps = new ProgressorSource("Doing my thing...");

            ps.Max = 5;
            await ProgressDialogModule.RunProgress(ps, 5);
        }
 protected override async void OnClick()
 {
     //If you run this in the DEBUGGER you will NOT see the dialog
     await ProgressDialogModule.RunProgress(new ProgressorSource("Doing my thing...", false), 5);
 }