mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 14:16:07 -06:00
17 lines
291 B
C++
17 lines
291 B
C++
#include <CtrlLib/CtrlLib.h>
|
|
|
|
using namespace Upp;
|
|
|
|
GUI_APP_MAIN
|
|
{
|
|
MenuBar menu;
|
|
TopWindow win;
|
|
win.Zoomable();
|
|
win.AddFrame(menu);
|
|
menu.Set([&](Bar& bar) {
|
|
bar.Sub("Test", [&] (Bar& bar) {
|
|
bar.Add("Test", [&] { Exclamation("Hello!"); });
|
|
});
|
|
});
|
|
win.Run();
|
|
}
|