DrawFrameControl (user32)
Last changed: -5.202.136.217

.
Summary

C# Signature:

[DllImport("user32.dll")]
static extern bool DrawFrameControl(IntPtr hdc, [In] ref RECT lprc,
   uint uType, uint uState);

User-Defined Types:

None.

Notes:

Constants

Tips & Tricks:

Please add some!

Sample Code:

// Note: Buttons use DFCS_PUSHED, but scrollbar arrowbuttons use DFCS_FLAT when pressed. -- n.j.r.

DrawFrameControl(hdc, ref rc, (uint)DFC.DFC_SCROLL, (uint)(DFCS.DFCS_FLAT | DFCS.DFCS_SCROLLLEFT));

Alternative Managed API:

Do you know one? Please contribute it!

Documentation