C# Класс ChatterBox.Client.Presentation.Shared.MVVM.DispatcherBindableBase

Provides ability to run the UI updates in UI thread.
Наследование: BindableBase
Показать файл Открыть проект

Защищенные свойства (Protected)

Свойство Тип Описание
_uiDispatcher Windows.UI.Core.CoreDispatcher

Защищенные методы

Метод Описание
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

Описание методов

DispatcherBindableBase() защищенный Метод

Creates a DispatcherBindableBase instance.
protected DispatcherBindableBase ( CoreDispatcher uiDispatcher ) : System
uiDispatcher Windows.UI.Core.CoreDispatcher Core event message dispatcher.
Результат System

OnPropertyChanged() защищенный Метод

Overrides the BindableBase's OnPropertyChanged method.
protected OnPropertyChanged ( string propertyName ) : void
propertyName string The name of the changed property.
Результат void

RunOnUiThread() защищенный Метод

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
Результат void

Описание свойств

_uiDispatcher защищенное свойство

protected CoreDispatcher,Windows.UI.Core _uiDispatcher
Результат Windows.UI.Core.CoreDispatcher