예제 #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);