FillRect

    FillRect - 채워진 사각형 그리기

    FillRect함수는 안이 채워진 사각형을 그리는 함수입니다. Declare Function FillRect Lib "user32" Alias "FillRect" (ByVal hdc As Integer, ByRef lpRect As RECT, ByVal hBrush As Integer) As Integer - VB.NET 선언 [DllImport("user32")] public static extern int FillRect(int hdc, ref RECT lpRect, int hBrush); - C# 선언 FillRect함수의 첫번째 인수는 실제 사각형을 그릴 Object의 Device Context를 지정해야 합니다. [Windows API for .NET] - GetDC - Window및 Contr..