C# Class AdvancedLauncher.Management.DialogManager

Inheritance: CrossDomainObject, IDialogManager
Datei anzeigen Open project: GoldRenard/DMOAdvancedLauncher

Private Properties

Property Type Description
ShowErrorDialogAsyncInternal Task
ShowMessageDialogAsyncInternal Task
ShowYesNoDialogInternal Task

Public Methods

Method Description
Initialize ( ) : void
ShowErrorDialog ( string text ) : void

Error MessageBox

ShowErrorDialogAsync ( string text ) : RemoteTask
ShowMessageDialog ( string title, string message ) : void

Shows Metro MessageBox Dialog

ShowMessageDialogAsync ( string title, string message ) : RemoteTask
ShowYesNoDialog ( string title, string message ) : RemoteTask

Private Methods

Method Description
ShowErrorDialogAsyncInternal ( string text ) : Task

Error MessageBox Async

ShowMessageDialogAsyncInternal ( string title, string message ) : Task

Shows Metro MessageBox Dialog Async

ShowYesNoDialogInternal ( string title, string message ) : Task

Shows Metro MessageBox Dialog with Yes/No buttons

Method Details

Initialize() public method

public Initialize ( ) : void
return void

ShowErrorDialog() public method

Error MessageBox
public ShowErrorDialog ( string text ) : void
text string Content of error
return void

ShowErrorDialogAsync() public method

public ShowErrorDialogAsync ( string text ) : RemoteTask
text string
return RemoteTask

ShowMessageDialog() public method

Shows Metro MessageBox Dialog
public ShowMessageDialog ( string title, string message ) : void
title string Title
message string Message
return void

ShowMessageDialogAsync() public method

public ShowMessageDialogAsync ( string title, string message ) : RemoteTask
title string
message string
return RemoteTask

ShowYesNoDialog() public method

public ShowYesNoDialog ( string title, string message ) : RemoteTask
title string
message string
return RemoteTask