PaintDesktop

    PaintDesktop - 배경화면 맞추기

    PaintDesktop함수는 지정한 Device Context구역을 현재 배경화면의 Image상태로 그려냅니다. Declare Function PaintDesktop Lib "user32" Alias "PaintDesktop" (ByVal hdc As Integer) As Integer - VB.NET 선언 [DllImport("user32")] public static extern int PaintDesktop(int hdc); - C# 선언 함수의 인수로는 배경화면과 똑같히 그려질 Device Context를 기술합니다. [Windows API for .NET] - GetDC - Window및 Control의 Device Context 구하기 [Windows API for .NET] - GetWind..