C# 클래스 Paint.BusyMessageDisplay

Handles displaying a 'busy' message before invoking an action
상속: IUIBusyMessage
파일 보기 프로젝트 열기: RandolphBurt/MonoGame-iOS-SimplePaint 1 사용 예제들

공개 메소드들

메소드 설명
BusyMessageDisplay ( string title, string message ) : System

Initializes a new instance of the Paint.BusyMessageDisplay class.

Show ( System.Action whenPresented ) : void

Show the 'busy' screen

메소드 상세

BusyMessageDisplay() 공개 메소드

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 ///
리턴 System

Show() 공개 메소드

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 ///
리턴 void