[DllImport("user32.dll")]
static extern bool ShowWindowAsync(IntPtr hWnd, int nCmdShow);
<DllImport("user32.dll")> _
Shared Function ShowWindowAsync(ByVal hWnd As IntPtr, ByVal nCmdShow As Integer) As Boolean
End Function
None.
None.
None.
[DllImport("user32.dll")]
private static extern bool ShowWindowAsync(IntPtr hWnd, int nCmdShow);
private const int SW_RESTORE = 9;
IntPtr i = (Int64)this.Handle;
ShowWindowAsync(i, SW_RESTORE);
Do you know one? Please contribute it!