make/vs/testapp/main.c

branch
newapi
changeset 193
74c688cc1839
parent 192
bcacd00ea955
child 194
e2281ace0769
--- a/make/vs/testapp/main.c	Sun Oct 01 18:54:23 2023 +0200
+++ b/make/vs/testapp/main.c	Sun Oct 01 22:34:48 2023 +0200
@@ -106,6 +106,11 @@
 
         ui_textfield(obj, .value = wdata->text);
         ui_passwordfield(obj, .value = wdata->password);
+        ui_newline(obj);
+
+        ui_frame(obj, .label = "Test", .colspan = 3, .vexpand = true) {
+            ui_button(obj, .label = "Button1", .onclick = action1, .onclickdata = "action1");
+        }
     }
 
     ui_show(obj);

mercurial