7 references to FlyoutIconProperty
Microsoft.Maui.Controls (7)
Shell\BaseShellItem.cs (3)
80
get { return (ImageSource)GetValue(
FlyoutIconProperty
); }
81
set { SetValue(
FlyoutIconProperty
, value); }
225
if (newValue == null || bindable.IsSet(
FlyoutIconProperty
))
Shell\MenuShellItem.cs (1)
20
this.SetBinding(
FlyoutIconProperty
, static (MenuItem item) => item.IconImageSource, BindingMode.OneWay, source: menuItem);
Shell\ShellContent.cs (1)
293
shellContent.SetBinding(
FlyoutIconProperty
, static (TemplatedPage page) => page.IconImageSource, BindingMode.OneWay, source: page);
Shell\ShellItem.cs (1)
229
result.SetBinding(
FlyoutIconProperty
, static (ShellSection section) => section.FlyoutIcon, BindingMode.OneWay, source: shellSection);
Shell\ShellSection.cs (1)
298
shellSection.SetBinding(
FlyoutIconProperty
, static (BaseShellItem item) => item.FlyoutIcon, BindingMode.OneWay, source: shellContent);