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

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
        public BusyMessageDisplay(string title, string message)
        {
            this.uiBusyAlertView = new UIBusyAlertView(title, message);
        }
BusyMessageDisplay