ultimatepp/uppdev/EditString/main.cpp
cxl 2d8367457f .uppdev
git-svn-id: svn://ultimatepp.org/upp/trunk@4346 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2011-12-26 16:52:05 +00:00

12 lines
192 B
C++

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