ultimatepp/uppdev/EditString/main.cpp
cxl d63d49797f .uppdev
git-svn-id: svn://ultimatepp.org/upp/trunk@5414 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2012-10-08 08:33:10 +00:00

16 lines
237 B
C++

#include <CtrlLib/CtrlLib.h>
using namespace Upp;
GUI_APP_MAIN
{
EditString es;
TopWindow win;
String h;
h << "Something ";
h.Cat('\0');
h << " to test";
es <<= h;
win.Add(es.HSizePos().TopPos(0, Ctrl::STDSIZE));
win.Run();
}