DrawThemeBackground

[DllImport("uxtheme.dll", SetLastError = true)]
public static extern HRESULT DrawThemeBackground(
   IntPtr hTheme,
   HDC hdc,
   int iPartId,
   int iStateId,
   ref RECT pRect,
   ref RECT pClipRect
);

Microsoft documentation: Link

Last updated