5 references to Icon
Microsoft.Maui.Controls (5)
Shell\BaseShellItem.cs (3)
40
/// <summary>Bindable property for <see cref="
Icon
"/>.</summary>
42
BindableProperty.Create(nameof(
Icon
), typeof(ImageSource), typeof(BaseShellItem), null, BindingMode.OneWay,
569
public ImageSource Icon => baseShellItem.
Icon
;
Shell\ShellItem.cs (1)
229
result.SetBinding(IconProperty, static (ShellSection section) => section.
Icon
, BindingMode.OneWay, source: shellSection);
Shell\ShellSection.cs (1)
299
shellSection.SetBinding(IconProperty, static (BaseShellItem item) => item.
Icon
, BindingMode.OneWay, source: shellContent);