1 write to FlyoutIcon
Microsoft.Maui.Controls (1)
Shell\BaseShellItem.cs (1)
230
shellItem.
FlyoutIcon
= (ImageSource)newValue;
6 references to FlyoutIcon
Microsoft.Maui.Controls (6)
Shell\BaseShellItem.cs (4)
36
/// <summary>Bindable property for <see cref="
FlyoutIcon
"/>.</summary>
38
BindableProperty.Create(nameof(
FlyoutIcon
), typeof(ImageSource), typeof(BaseShellItem), null, BindingMode.OneTime);
451
imageBinding = Binding.Create(static (BaseShellItem item) => item.
FlyoutIcon
);
571
public ImageSource FlyoutIcon => baseShellItem.
FlyoutIcon
;
Shell\ShellItem.cs (1)
231
result.SetBinding(FlyoutIconProperty, static (ShellSection section) => section.
FlyoutIcon
, BindingMode.OneWay, source: shellSection);
Shell\ShellSection.cs (1)
300
shellSection.SetBinding(FlyoutIconProperty, static (BaseShellItem item) => item.
FlyoutIcon
, BindingMode.OneWay, source: shellContent);