Paint.BusyMessageDisplay.Show C# (CSharp) Méthode

Show() public méthode

Show the 'busy' screen
public Show ( System.Action whenPresented ) : void
whenPresented System.Action /// The action to run once the form/view is presented on screen ///
Résultat void
        public void Show(Action whenPresented)
        {
            this.uiBusyAlertView.Presented += (sender, e) =>
            {
                whenPresented();
                this.uiBusyAlertView.Hide();
            };

            this.uiBusyAlertView.Show();
        }
BusyMessageDisplay