ultimatepp/upptst/TestChStyle/Sample.cpp
cxl 4254bc8d29 .upptst
git-svn-id: svn://ultimatepp.org/upp/trunk@13798 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2020-01-02 08:21:00 +00:00

13 lines
390 B
C++

#include "TestChStyle.h"
void Sample::Paint(Draw& w)
{
w.DrawRect(GetSize(), White());
w.DrawImage(10, 10, CtrlImg::spinup());
// ChPaint(w, 10, 10, 100, 20, CtrlsImg::EFE());
// ChPaint(w, 101, 0, 17, 23, DropList::StyleDefault().rmiddle[0]);
ChPaint(w, 101, 0, 17, 23, DropList::StyleDefault().rmiddle[0]);
// EditFieldFrame().FramePaint(w, RectC(10, 50, 100, 20));
}