add:浮动栏自定义

This commit is contained in:
2026-05-01 17:20:47 +08:00
parent 5fc92cdd10
commit 6980abe331
27 changed files with 690 additions and 20 deletions
@@ -0,0 +1,14 @@
namespace Ink_Canvas.Controls.Toolbar
{
public enum ToolbarInsertPosition
{
/// <summary>从容器头部依次插入;Order 小的在前。</summary>
Prepend,
/// <summary>追加到容器末尾。</summary>
Append,
/// <summary>插入到由 AnchorName 指定的已有元素之前。</summary>
BeforeAnchor,
/// <summary>插入到由 AnchorName 指定的已有元素之后(同一锚点多项按 Order 依次排列)。</summary>
AfterAnchor
}
}