zoukankan      html  css  js  c++  java
  • process.MainWindowHandle == 0

    The main window is the window that is created when the process is started. After initialization, other windows may be opened, including the Modal and TopLevelwindows, but the first window associated with the process remains the main window.

    You can get the MainWindowHandle property only for processes that are running on the local computer. The MainWindowHandle property is a value that uniquely identifies the window that is associated with the process.

    A process has a main window associated with it only if the process has a graphical interface. If the associated process does not have a main window, theMainWindowHandle value is zero. The value is also zero for processes that have been hidden, that is, processes that are not visible in the taskbar. This can be the case for processes that appear as icons in the notification area, at the far right of the taskbar.

    If you have just started a process and want to use its main window handle, consider using the WaitForInputIdle method to allow the process to finish starting, ensuring that the main window handle has been created. Otherwise, an exception will be thrown.

    Windows 98, Windows Millennium Edition Platform Note: This property is not available on this platform if you started the process withProcessStartInfo.UseShellExecute set to true.

    process.MainWindowHandle很多情况下为0,注意红字部分。

  • 相关阅读:
    JavaFx在macOS下的文字渲染Bug
    Java多接口同名方法的冲突
    旧技术的惯性
    一点思考(1)
    slisp:编译到JVM平台上的lisp方言
    Arcee:又一个 Parser Generator 轮子
    使用Java实现一门简单的动态语言
    Hello World!
    [NOI2008]奥运物流
    [IOI2005]Riv河流
  • 原文地址:https://www.cnblogs.com/brightsea/p/2243500.html
Copyright © 2011-2022 走看看