C# Class Paint.BusyMessageDisplay

Handles displaying a 'busy' message before invoking an action
Inheritance: IUIBusyMessage
Afficher le fichier Open project: RandolphBurt/MonoGame-iOS-SimplePaint Class Usage Examples

Méthodes publiques

Méthode Description
BusyMessageDisplay ( string title, string message ) : System

Initializes a new instance of the Paint.BusyMessageDisplay class.

Show ( System.Action whenPresented ) : void

Show the 'busy' screen

Method Details

BusyMessageDisplay() public méthode

Initializes a new instance of the Paint.BusyMessageDisplay class.
public BusyMessageDisplay ( string title, string message ) : System
title string /// Title of the 'busy' view ///
message string /// Message to display on the 'busy' view ///
Résultat System

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