コード例 #1
0
ファイル: HDC.cs プロジェクト: Trezamere/Practices
 public bool FillRect(ref RECT rect, HBRUSH brush)
 {
     return FillRect(this, ref rect, brush);
 }
コード例 #2
0
ファイル: HDC.cs プロジェクト: Trezamere/Practices
 public HBRUSH SelectBrush(HBRUSH brush)
 {
     return (HBRUSH)SelectObject(brush);
 }
コード例 #3
0
ファイル: HDC.cs プロジェクト: Trezamere/Practices
 private static extern bool FillRect(HDC hDC, ref RECT lprc, HBRUSH hbr);