[DllImport("coredll.dll"]
private static extern bool SetForegroundWindow (IntPtr hWnd);
Declare Function SetForegroundWindow Lib "coredll.dll" (hWnd as IntPtr) As bool
None.
Do you know one? Please contribute it!
None.
Please add some!
[DllImport ("coredll")]
private static extern bool SetForegroundWindow (IntPtr hWnd);
[DllImport ("coredll")]
private static extern IntPtr GetDesktopWindow ();
private void SendToBack ()
{
SetForegroundWindow (GetDesktopWindow ());
}