diff options
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/src/main.cpp b/src/main.cpp index e11fbbe0..7a105d79 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -153,9 +153,16 @@ int APIENTRY wWinMain( */ window.AddChild( - Button::Create( - {TextBlock::Create(L"Button")} - ) + Border::Create({ + MarginContainer::Create(Thickness(50, 50), { + LinearLayout::Create(LinearLayout::Orientation::Vertical, { + Button::Create({ + TextBlock::Create(L"Button") + }), + TextBox::Create() + }) + }) + }) ); window.Show(); |