4 writes to PropertyChangedCallback
PresentationCore (1)
Core\CSharp\System\Windows\Media\Animation\Animatable.cs (1)
151
propertyMetadata.
PropertyChangedCallback
= changed;
WindowsBase (3)
Base\System\Windows\PropertyMetadata.cs (3)
40
PropertyChangedCallback
= propertyChangedCallback;
52
PropertyChangedCallback
= propertyChangedCallback;
66
PropertyChangedCallback
= propertyChangedCallback;
19 references to PropertyChangedCallback
PresentationCore (1)
Core\CSharp\System\Windows\Media\Effects\ShaderEffect.cs (1)
263
var callback = metadata.
PropertyChangedCallback
;
PresentationFramework (14)
src\Framework\System\Windows\Controls\DefinitionBase.cs (6)
152
/// <see cref="PropertyMetadata.
PropertyChangedCallback
"/>
196
/// <see cref="PropertyMetadata.
PropertyChangedCallback
"/>
225
/// <see cref="PropertyMetadata.
PropertyChangedCallback
"/>
254
/// <see cref="PropertyMetadata.
PropertyChangedCallback
"/>
509
/// <see cref="PropertyMetadata.
PropertyChangedCallback
"/>
586
/// <see cref="PropertyMetadata.
PropertyChangedCallback
"/>
src\Framework\System\Windows\Controls\Grid.cs (2)
3023
/// <see cref="PropertyMetadata.
PropertyChangedCallback
"/>
3039
/// <see cref="PropertyMetadata.
PropertyChangedCallback
"/>
src\Framework\System\Windows\Controls\Panel.cs (1)
952
/// <see cref="PropertyMetadata.
PropertyChangedCallback
"/>
src\Framework\System\Windows\Controls\Stack.cs (1)
1019
/// <see cref="PropertyMetadata.
PropertyChangedCallback
"/>
src\Framework\System\Windows\Controls\VirtualizingStackPanel.cs (1)
11163
/// <see cref="PropertyMetadata.
PropertyChangedCallback
"/>
src\Framework\System\Windows\Controls\WrapPanel.cs (1)
167
/// <see cref="PropertyMetadata.
PropertyChangedCallback
"/>
src\Framework\System\Windows\Documents\TableCell.cs (2)
583
/// <see cref="PropertyMetadata.
PropertyChangedCallback
"/>
603
/// <see cref="PropertyMetadata.
PropertyChangedCallback
"/>
WindowsBase (4)
Base\System\Windows\DependencyObject.cs (2)
2077
if ((metadata != null) && (metadata.
PropertyChangedCallback
!= null))
2079
metadata.
PropertyChangedCallback
(this, e);
Base\System\Windows\PropertyMetadata.cs (2)
589
if (baseMetadata.
PropertyChangedCallback
!= null)
597
Delegate[] handlers = baseMetadata.
PropertyChangedCallback
.GetInvocationList();