mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 22:02:58 -06:00
21 lines
258 B
C++
21 lines
258 B
C++
#include <CtrlLib/CtrlLib.h>
|
|
|
|
using namespace Upp;
|
|
|
|
struct App : public TopWindow
|
|
{
|
|
virtual void Paint(Draw& w)
|
|
{
|
|
w.DrawRect(GetSize(), White());
|
|
ChPaint(w, GetSize(), Button::StyleScroll().look[0]);
|
|
}
|
|
|
|
App()
|
|
{
|
|
}
|
|
};
|
|
|
|
GUI_APP_MAIN
|
|
{
|
|
App().Run();
|
|
}
|