| File: Handlers\Layout\LayoutHandler.Standard.cs | Web Access |
| Project: src\src\Core\src\Core.csproj (Microsoft.Maui) |
using System; using System.Collections.Generic; using System.Text; namespace Microsoft.Maui.Handlers { public partial class LayoutHandler : ViewHandler<ILayout, object> { public void Add(IView view) => throw new NotImplementedException(); public void Remove(IView view) => throw new NotImplementedException(); public void Clear() => throw new NotImplementedException(); public void Insert(int index, IView view) => throw new NotImplementedException(); public void Update(int index, IView view) => throw new NotImplementedException(); public void UpdateZIndex(IView view) => throw new NotImplementedException(); public static partial void MapBackground(ILayoutHandler handler, ILayout layout) => throw new NotImplementedException(); protected override object CreatePlatformView() => throw new NotImplementedException(); } }