1 write to FlyoutIcon
Microsoft.Maui.Controls (1)
Shell\BaseShellItem.cs (1)
229 shellItem.FlyoutIcon = (ImageSource)newValue;
5 references to FlyoutIcon
Microsoft.Maui.Controls (5)
Shell\BaseShellItem.cs (3)
35 /// <summary>Bindable property for <see cref="FlyoutIcon"/>.</summary> 37 BindableProperty.Create(nameof(FlyoutIcon), typeof(ImageSource), typeof(BaseShellItem), null, BindingMode.OneTime); 450 imageBinding = Binding.Create(static (BaseShellItem item) => item.FlyoutIcon);
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);