mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 22:02:58 -06:00
14 lines
196 B
C++
14 lines
196 B
C++
#include <CtrlLib/CtrlLib.h>
|
|
|
|
using namespace Upp;
|
|
|
|
GUI_APP_MAIN
|
|
{
|
|
TopWindow win, win2;
|
|
win.Title("xxx");
|
|
win.Open();
|
|
win2.OpenMain();
|
|
win2.Run();
|
|
win.Urgent();
|
|
win2.Run();
|
|
}
|