mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 06:05:58 -06:00
15 lines
256 B
C++
15 lines
256 B
C++
#include <CtrlLib/CtrlLib.h>
|
|
|
|
using namespace Upp;
|
|
|
|
GUI_APP_MAIN
|
|
{
|
|
TopWindow app;
|
|
app.SetRect(0, 0, 200, 20);
|
|
EditString text;
|
|
app.Add(text.TopPosZ(0, 20).HSizePos());
|
|
|
|
text <<= "Some text - operator version";
|
|
app.Run();
|
|
PromptOK((String)~text);
|
|
}
|