Add RemoveChild to IParentableElement, only resize Container if children overflow it.

This commit is contained in:
2025-06-20 19:14:29 +02:00
parent 3154b3fa10
commit a9a8113dd9
4 changed files with 28 additions and 9 deletions

View File

@@ -14,6 +14,7 @@ public interface IParentableElement
{
public IReadOnlyList<IElement> Children { get; }
public void AddChild(IElement child);
public void RemoveChild(IElement child);
}
public interface IResizeableElement