AvaloniaObjectRaisePropertyChangedT Method
Namespace: AvaloniaAssembly: Avalonia.Base (in Avalonia.Base.dll) Version: 11.3.999
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
- property DirectPropertyBaseT
- The property that has changed.
- oldValue T
- The old property value.
- newValue T
- The new property value.
- T