C# Class ChatterBox.Client.Presentation.Shared.MVVM.DispatcherBindableBase

Provides ability to run the UI updates in UI thread.
Inheritance: BindableBase
Afficher le fichier Open project: openpeer/ChatterBox

Protected Properties

Свойство Type Description
_uiDispatcher Windows.UI.Core.CoreDispatcher

Méthodes protégées

Méthode Description
DispatcherBindableBase ( CoreDispatcher uiDispatcher ) : System

Creates a DispatcherBindableBase instance.

OnPropertyChanged ( string propertyName ) : void

Overrides the BindableBase's OnPropertyChanged method.

RunOnUiThread ( System.Action fn ) : void

Schedules the provided callback on the UI thread from a worker thread, and

Method Details

DispatcherBindableBase() protected méthode

Creates a DispatcherBindableBase instance.
protected DispatcherBindableBase ( CoreDispatcher uiDispatcher ) : System
uiDispatcher Windows.UI.Core.CoreDispatcher Core event message dispatcher.
Résultat System

OnPropertyChanged() protected méthode

Overrides the BindableBase's OnPropertyChanged method.
protected OnPropertyChanged ( string propertyName ) : void
propertyName string The name of the changed property.
Résultat void

RunOnUiThread() protected méthode

Schedules the provided callback on the UI thread from a worker thread, and
protected RunOnUiThread ( System.Action fn ) : void
fn System.Action The function to execute
Résultat void

Property Details

_uiDispatcher protected_oe property

protected CoreDispatcher,Windows.UI.Core _uiDispatcher
Résultat Windows.UI.Core.CoreDispatcher