git-svn-id: svn://ultimatepp.org/upp/trunk@5414 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2012-10-08 08:33:10 +00:00
parent c055eceb71
commit d63d49797f

View file

@ -6,7 +6,11 @@ GUI_APP_MAIN
{
EditString es;
TopWindow win;
es <<= "Something to test";
String h;
h << "Something ";
h.Cat('\0');
h << " to test";
es <<= h;
win.Add(es.HSizePos().TopPos(0, Ctrl::STDSIZE));
win.Run();
}