DrawFrameControl

    DrawFrameControl - Frame Control 그리기

    DrawFrameControl함수는 인수로 지정한 다양한 형태의 Control을 그려 표시합니다. Declare Function DrawFrameControl Lib "user32" Alias "DrawFrameControl" (ByVal hDC As Integer, ByRef lpRect As RECT, ByVal un1 As Integer, ByVal un2 As Integer) As Integer - VB.NET 선언 [DllImport("user32")] public static extern int DrawFrameControl(int hDC, ref RECT lpRect, int nu1, int un2); - C# 선언 DrawFrameControl함수의 첫번째 인수로는 Control을 표시할 ..