ultimatepp/uppdev/cjk/main.cpp
cxl d0b99bbdfd .uppdev
git-svn-id: svn://ultimatepp.org/upp/trunk@3345 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2011-04-16 19:10:09 +00:00

16 lines
268 B
C++

#include <CtrlLib/CtrlLib.h>
using namespace Upp;
struct MyApp : TopWindow {
virtual void Paint(Draw& w) {
w.DrawRect(GetSize(), White);
w.DrawText(10, 10, "ultimate++是一个性能优良的C++GUI库");
}
};
GUI_APP_MAIN
{
MyApp().Run();
}