diff -r b9dc9cdfa23a -r 1df2fb3d079c ui/wpf/UIwrapper/UIwrapper/container.cpp --- a/ui/wpf/UIwrapper/UIwrapper/container.cpp Sun Jan 22 17:23:20 2017 +0100 +++ b/ui/wpf/UIwrapper/UIwrapper/container.cpp Sun Jan 22 18:02:45 2017 +0100 @@ -47,6 +47,11 @@ ct->Layout->Vexpand = expand != 0; } +UI_EXPORT void __stdcall UIlayout_gridwidth(gcroot *container, int width) { + UI::Container ^ct = *container; + ct->Layout->GridWidth = width; +} + UI_EXPORT void __stdcall UIlayout_newline(gcroot *container) { UI::Container ^ct = *container; ct->Layout->NewLine = true;