File: Shell\IShellItemController.cs
Web Access
Project: src\src\Controls\src\Core\Controls.Core.csproj (Microsoft.Maui.Controls)
#nullable disable
using System.Collections.ObjectModel;
using System.Collections.Specialized;
 
namespace Microsoft.Maui.Controls
{
	public interface IShellItemController : IElementController
	{
		bool ProposeSection(ShellSection shellSection, bool setValue = true);
 
		ReadOnlyCollection<ShellSection> GetItems();
		event NotifyCollectionChangedEventHandler ItemsCollectionChanged;
		bool ShowTabs { get; }
	}
}