qamp/Qrakhen.TilingFrames/Models/TilingNode.cs

9 lines
437 B
C#

namespace Qrakhen.TilingFrames.Models;
/// <summary>
/// Base node for the binary tree structure to work.<br/>
/// A tiling node is either a <see cref="TilingPanel"/>, which has a reference to two <see cref="TilingNode"/>s.<br/>
/// Those nodes may then be additional <see cref="TilingPanel"/>s, or, when at the end of the branch, a <see cref="TilingHost"/>.
/// </summary>
public abstract class TilingNode : ObservableObject;