6 references to IconProperty
Microsoft.Maui.Controls (6)
Shell\BaseShellItem.cs (2)
87
get { return (ImageSource)GetValue(
IconProperty
); }
88
set { SetValue(
IconProperty
, value); }
Shell\MenuShellItem.cs (1)
19
this.SetBinding(
IconProperty
, static (MenuItem item) => item.IconImageSource, BindingMode.OneWay, source: menuItem);
Shell\ShellContent.cs (1)
292
shellContent.SetBinding(
IconProperty
, static (TemplatedPage page) => page.IconImageSource, BindingMode.OneWay, source: page);
Shell\ShellItem.cs (1)
227
result.SetBinding(
IconProperty
, static (ShellSection section) => section.Icon, BindingMode.OneWay, source: shellSection);
Shell\ShellSection.cs (1)
297
shellSection.SetBinding(
IconProperty
, static (BaseShellItem item) => item.Icon, BindingMode.OneWay, source: shellContent);