C# Class BleMicroPythonSample.ViewModelBase

Inheritance: INotifyPropertyChanged
Show file Open project: digidotcom/xbee-csharp

Protected Methods

Method Description
HideLoadingDialog ( ) : void

Hides the loading dialog.

RaisePropertyChangedEvent ( string propertyName ) : void

Raises a property changed event for the given property name.

ShowErrorDialog ( string title, string message ) : void

Shows an error dialog with the given title and message.

ShowLoadingDialog ( string text ) : void

Shows a loading dialog with the given text.

Method Details

HideLoadingDialog() protected method

Hides the loading dialog.
protected HideLoadingDialog ( ) : void
return void

RaisePropertyChangedEvent() protected method

Raises a property changed event for the given property name.
protected RaisePropertyChangedEvent ( string propertyName ) : void
propertyName string Property name.
return void

ShowErrorDialog() protected method

Shows an error dialog with the given title and message.
protected ShowErrorDialog ( string title, string message ) : void
title string Error title.
message string Error message.
return void

ShowLoadingDialog() protected method

Shows a loading dialog with the given text.
protected ShowLoadingDialog ( string text ) : void
text string Text to display.
return void