Guidebook Tables (#28484)

* PJB's cool table control (it probably doesn't work)

* ok wait wrong file

* Guidebook Tables
This commit is contained in:
Nemanja
2024-06-01 23:58:33 -04:00
committed by GitHub
parent d6ba166d3b
commit 21d0b1fd55
4 changed files with 364 additions and 0 deletions

View File

@@ -11,6 +11,9 @@ public sealed class Box : BoxContainer, IDocumentTag
HorizontalExpand = true;
control = this;
if (args.TryGetValue("Margin", out var margin))
Margin = new Thickness(float.Parse(margin));
if (args.TryGetValue("Orientation", out var orientation))
Orientation = Enum.Parse<LayoutOrientation>(orientation);
else