public virtual bool ShowWindow(CmdShow nCmdShow) { if (this.shellHandle == IntPtr.Zero) { return(false); } ShowWindow(this.shellHandle, (int)nCmdShow); WaitForInputIdle(this.shellHandle, MILLISECONDS_TIMEOUT); return(true); }
private static extern bool ShowWindow(IntPtr hWnd, CmdShow cmdShow);
public static extern bool ShowWindow(IntPtr handle, CmdShow nCmdShow);
public static extern bool ShowWindow(IntPtr hwnd, CmdShow nCmdShow);
public static extern bool ShowWindow(IntPtr hWnd, CmdShow cmdShow);
public static int ShowWindowEx(int hwnd, CmdShow nCmdShow) { ShowWindow(hwnd, nCmdShow); return(ShowWindow(hwnd, nCmdShow)); }
private static extern int ShowWindow(int hwnd, CmdShow nCmdShow);