16 references to IsVisibleProperty
Microsoft.Maui.Controls (15)
BoxView\BoxView.cs (1)
60
propertyName ==
IsVisibleProperty
.PropertyName ||
Compatibility\Handlers\iOS\FrameRenderer.cs (1)
21
[VisualElement.
IsVisibleProperty
.PropertyName] = (h, _) => h.SetupLayer(),
Compatibility\Handlers\iOS\VisualElementRenderer.cs (1)
58
e.PropertyName == VisualElement.
IsVisibleProperty
.PropertyName ||
Handlers\Items\ItemsViewHandler.cs (1)
30
[Controls.ItemsView.
IsVisibleProperty
.PropertyName] = MapIsVisible,
Handlers\Items2\ItemsViewHandler2.iOS.cs (1)
34
[Controls.ItemsView.
IsVisibleProperty
.PropertyName] = MapIsVisible,
Layout\FlexLayout.cs (1)
431
BindableObject bo => (bool)bo.GetValue(
IsVisibleProperty
),
LegacyLayouts\FlexLayout.cs (3)
340
item.IsVisible = (bool)view.GetValue(
IsVisibleProperty
);
402
if (e.PropertyName ==
IsVisibleProperty
.PropertyName)
407
item.IsVisible = (bool)((View)sender).GetValue(
IsVisibleProperty
);
Properties\AssemblyInfo.cs (1)
126
[assembly: StyleProperty("visibility", typeof(VisualElement), nameof(VisualElement.
IsVisibleProperty
), Inherited = true)]
Shell\ShellContent.cs (1)
187
if (e.PropertyName == Page.
IsVisibleProperty
.PropertyName)
TitleBar\TitleBar.cs (2)
557
Property =
IsVisibleProperty
,
567
Property =
IsVisibleProperty
,
VisualElement\VisualElement.cs (2)
706
get { return (bool)GetValue(
IsVisibleProperty
); }
707
set { SetValue(
IsVisibleProperty
, value); }
Microsoft.Maui.Controls.Compatibility (1)
Tizen\Renderers\VisualElementRenderer.cs (1)
41
RegisterPropertyHandler(VisualElement.
IsVisibleProperty
, UpdateIsVisible);