コード例 #1
0
ファイル: Canvas.hpp プロジェクト: StefanL74/XCSoar
  void DrawFilledRectangle(const PixelRect &rc, const Brush &brush) {
    assert(IsDefined());

    ::FillRect(dc, &rc, brush.Native());
  }
コード例 #2
0
ファイル: Canvas.hpp プロジェクト: StefanL74/XCSoar
 void Select(const Brush &brush) {
   SelectObject(brush.Native());
 }