4 writes to PropertyChangedCallback
PresentationCore (1)
Core\CSharp\System\Windows\Media\Animation\Animatable.cs (1)
151propertyMetadata.PropertyChangedCallback = changed;
WindowsBase (3)
Base\System\Windows\PropertyMetadata.cs (3)
40PropertyChangedCallback = propertyChangedCallback; 52PropertyChangedCallback = propertyChangedCallback; 66PropertyChangedCallback = propertyChangedCallback;
19 references to PropertyChangedCallback
PresentationCore (1)
Core\CSharp\System\Windows\Media\Effects\ShaderEffect.cs (1)
263var 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)
2077if ((metadata != null) && (metadata.PropertyChangedCallback != null)) 2079metadata.PropertyChangedCallback(this, e);
Base\System\Windows\PropertyMetadata.cs (2)
589if (baseMetadata.PropertyChangedCallback != null) 597Delegate[] handlers = baseMetadata.PropertyChangedCallback.GetInvocationList();