C# Class Paint.BusyMessageDisplay

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

Public Methods

Method 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 method

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 ///
return System

Show() public method

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 ///
return void