public static BOOL DrawFrameControl(HandleRef hdc, ref RECT rect, DFC type, DFCS state)
        {
            BOOL result = DrawFrameControl((Gdi32.HDC)hdc.Handle, ref rect, type, state);

            GC.KeepAlive(hdc.Wrapper);
            return(result);
        }
 public static extern BOOL DrawFrameControl(IntPtr hdc, ref RECT rect, DFC type, DFCS state);
 public static extern BOOL DrawFrameControl(Gdi32.HDC hdc, ref RECT rect, DFC type, DFCS state);
Example #4
0
 internal static extern bool DrawFrameControl(IntPtr hdc, ref RECT lprc, DFC uType, DFCS uState);