DrawEdge

    DrawEdge - 테두리 그리기

    DrawEdge은 Window에 4각형 모양의 테두리를 그리는 함수 입니다. Declare Function DrawEdge Lib "user32" Alias "DrawEdge" (ByVal hdc As Integer, ByRef qrc As RECT, ByVal edge As Integer, ByVal grfFlags As Integer) As Integer - VB.NET 선언 [DllImport("user32")] public static extern int DrawEdge(int hdc, ref RECT qrc, int edge, int grfFlags); - C# 선언 DrawEdge의 첫번째 인수는 테두리를 그릴 Window창이나 화면의 Device Context를 기술합니다. [Windows ..