11 references to IsEnabledProperty
Microsoft.Maui.Controls (10)
Compatibility\Handlers\iOS\VisualElementRenderer.cs (1)
59
e.PropertyName == VisualElement.
IsEnabledProperty
.PropertyName ||
RefreshView\RefreshView.cs (1)
133
if (
IsEnabledProperty
.PropertyName == propertyName &&
SwipeView\SwipeView.cs (1)
280
if (e.PropertyName ==
IsEnabledProperty
.PropertyName)
VisualElement\VisualElement.cs (7)
36
bool _isEnabledExplicit = (bool)
IsEnabledProperty
.DefaultValue;
631
get { return (bool)GetValue(
IsEnabledProperty
); }
632
set { SetValue(
IsEnabledProperty
, value); }
1648
(bindable as IPropertyPropagationController)?.PropagatePropertyChanged(VisualElement.
IsEnabledProperty
.PropertyName);
1723
if (propertyName == null || propertyName ==
IsEnabledProperty
.PropertyName)
1724
this.RefreshPropertyValue(
IsEnabledProperty
, _isEnabledExplicit);
1737
this.RefreshPropertyValue(
IsEnabledProperty
, _isEnabledExplicit);
Microsoft.Maui.Controls.Compatibility (1)
Tizen\Renderers\VisualElementRenderer.cs (1)
43
RegisterPropertyHandler(VisualElement.
IsEnabledProperty
, UpdateIsEnabled);