| File: Handlers\Items\GroupableItemsViewHandler.Standard.cs | Web Access |
| Project: src\src\Controls\src\Core\Controls.Core.csproj (Microsoft.Maui.Controls) |
#nullable disable using System; using System.Collections.Generic; using System.Text; using Microsoft.Maui.Handlers; namespace Microsoft.Maui.Controls.Handlers.Items { public partial class GroupableItemsViewHandler<TItemsView> : SelectableItemsViewHandler<TItemsView> where TItemsView : GroupableItemsView { protected override object CreatePlatformView() { throw new NotImplementedException(); } public static void MapIsGrouped(GroupableItemsViewHandler<TItemsView> handler, GroupableItemsView itemsView) { } } }