CPF/CPF.Razor/Core/ElementManager.cs
2024-01-08 10:55:10 +08:00

21 lines
940 B
C#

// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
namespace CPF.Razor
{
/// <summary>
/// Utilities needed by the system to manage native controls. Implementations
/// of native rendering systems have their own quirks in terms of dealing with
/// parent/child relationships, so each must implement this given the constraints
/// and requirements of their systems.
/// </summary>
public abstract class ElementManager
{
public abstract void AddChildElement(IElementHandler parentHandler, IElementHandler childHandler, int physicalSiblingIndex);
public abstract int GetPhysicalSiblingIndex(IElementHandler handler);
public abstract bool IsParented(IElementHandler handler);
public abstract bool IsParentOfChild(IElementHandler parentHandler, IElementHandler childHandler);
public abstract void RemoveElement(IElementHandler handler);
}
}