mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-06-20 06:05:32 -06:00
13 lines
390 B
C++
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));
|
|
}
|