|
|
@ -104,13 +104,16 @@ namespace Avalonia |
|
|
/// <inheritdoc/>
|
|
|
/// <inheritdoc/>
|
|
|
internal override void NotifyInitialized(IAvaloniaObject o) |
|
|
internal override void NotifyInitialized(IAvaloniaObject o) |
|
|
{ |
|
|
{ |
|
|
var e = new AvaloniaPropertyChangedEventArgs<TValue>( |
|
|
if (HasNotifyInitializedObservers) |
|
|
o, |
|
|
{ |
|
|
this, |
|
|
var e = new AvaloniaPropertyChangedEventArgs<TValue>( |
|
|
default, |
|
|
o, |
|
|
InvokeGetter(o), |
|
|
this, |
|
|
BindingPriority.Unset); |
|
|
default, |
|
|
NotifyInitialized(e); |
|
|
InvokeGetter(o), |
|
|
|
|
|
BindingPriority.Unset); |
|
|
|
|
|
NotifyInitialized(e); |
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
/// <inheritdoc/>
|
|
|
/// <inheritdoc/>
|
|
|
|