7 implementations of PropagatePropertyChanged
Microsoft.Maui.Controls (7)
Cells\Cell.cs (1)
244 void IPropertyPropagationController.PropagatePropertyChanged(string propertyName)
Menu\MenuItem.cs (1)
170 void IPropertyPropagationController.PropagatePropertyChanged(string propertyName)
Shell\BaseShellItem.cs (1)
270 void IPropertyPropagationController.PropagatePropertyChanged(string propertyName)
Shell\Shell.cs (1)
1970 void IPropertyPropagationController.PropagatePropertyChanged(string propertyName)
Shell\ShellItem.cs (1)
134 void IPropertyPropagationController.PropagatePropertyChanged(string propertyName)
Shell\ShellSection.cs (1)
197 void IPropertyPropagationController.PropagatePropertyChanged(string propertyName)
VisualElement\VisualElement.cs (1)
1725 void IPropertyPropagationController.PropagatePropertyChanged(string propertyName)
12 references to PropagatePropertyChanged
Microsoft.Maui.Controls (12)
Cells\Cell.cs (3)
205 PropertyPropagationController.PropagatePropertyChanged(null); 218 PropertyPropagationController.PropagatePropertyChanged(null); 294 PropertyPropagationController.PropagatePropertyChanged(e.PropertyName);
Element\Element.cs (1)
631 (this as IPropertyPropagationController)?.PropagatePropertyChanged(null);
Internals\PropertyPropagationExtensions.cs (2)
32 view.PropagatePropertyChanged(propertyName); 49 view.PropagatePropertyChanged(propertyName);
Menu\MenuItem.cs (1)
185 ppc.PropagatePropertyChanged(IsEnabledProperty.PropertyName);
VisualElement\VisualElement.cs (5)
1609 (self as IPropertyPropagationController)?.PropagatePropertyChanged(VisualElement.VisualProperty.PropertyName); 1629 (bindable as IPropertyPropagationController)?.PropagatePropertyChanged(VisualElement.FlowDirectionProperty.PropertyName); 1652 (bindable as IPropertyPropagationController)?.PropagatePropertyChanged(VisualElement.IsEnabledProperty.PropertyName); 1668 (bindable as IPropertyPropagationController)?.PropagatePropertyChanged(VisualElement.InputTransparentProperty.PropertyName); 1754 (this as IPropertyPropagationController)?.PropagatePropertyChanged(VisualElement.InputTransparentProperty.PropertyName);