예제 #1
0
 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);
 }
예제 #2
0
 private static extern bool ShowWindow(IntPtr hWnd, CmdShow cmdShow);
예제 #3
0
 public static extern bool ShowWindow(IntPtr handle, CmdShow nCmdShow);
예제 #4
0
 public static extern bool ShowWindow(IntPtr hwnd, CmdShow nCmdShow);
예제 #5
0
 public static extern bool ShowWindow(IntPtr hWnd, CmdShow cmdShow);
예제 #6
0
		private static extern bool ShowWindow(IntPtr hWnd, CmdShow cmdShow);
예제 #7
0
 public static int ShowWindowEx(int hwnd, CmdShow nCmdShow)
 {
     ShowWindow(hwnd, nCmdShow);
     return(ShowWindow(hwnd, nCmdShow));
 }
예제 #8
0
 private static extern int ShowWindow(int hwnd, CmdShow nCmdShow);