RaisePropertyChanged<T> Method
Raises the PropertyChanged event for a direct property.
Definition
Namespace: Avalonia
Assembly: Avalonia.Base (in Avalonia.Base.dll)
- C#
- VB
- F#
protected void RaisePropertyChanged<T>(
DirectPropertyBase<T> property,
T oldValue,
T newValue
)
Protected Sub RaisePropertyChanged(Of T) (
property As DirectPropertyBase(Of T),
oldValue As T,
newValue As T
)
member RaisePropertyChanged :
property : DirectPropertyBase<'T> *
oldValue : 'T *
newValue : 'T -> unit
Parameters
- DirectPropertyBase(T)
- The property that has changed.
- T
- The old property value.
- T
- The new property value.