当前位置: 首页>>代码示例>>Python>>正文


Python win32gui.FindWindowEx方法代码示例

本文整理汇总了Python中win32gui.FindWindowEx方法的典型用法代码示例。如果您正苦于以下问题:Python win32gui.FindWindowEx方法的具体用法?Python win32gui.FindWindowEx怎么用?Python win32gui.FindWindowEx使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在win32gui的用法示例。


在下文中一共展示了win32gui.FindWindowEx方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: dumpWindow

# 需要导入模块: import win32gui [as 别名]
# 或者: from win32gui import FindWindowEx [as 别名]
def dumpWindow(hwnd, wantedText=None, wantedClass=None):
    '''
    :param hwnd: 窗口句柄
    :param wantedText: 指定子窗口名
    :param wantedClass: 指定子窗口类名
    :return: 返回父窗口下所有子窗体的句柄
    '''
    windows = []
    hwndChild = None
    while True:
        hwndChild = win32gui.FindWindowEx(hwnd, hwndChild, wantedClass, wantedText)
        if hwndChild:
            textName = win32gui.GetWindowText(hwndChild)
            className = win32gui.GetClassName(hwndChild)
            windows.append((hwndChild, textName, className))
        else:
            return windows 
开发者ID:ynzheng,项目名称:pyautotrade_tdx,代码行数:19,代码来源:winguiauto.py

示例2: TestObjectFromWindow

# 需要导入模块: import win32gui [as 别名]
# 或者: from win32gui import FindWindowEx [as 别名]
def TestObjectFromWindow():
    # Check we can use ObjectFromLresult to get the COM object from the
    # HWND - see KB Q249232
    # Locating the HWND is different than the KB says...
    hwnd = win32gui.FindWindow('IEFrame', None)
    for child_class in ['TabWindowClass', 'Shell DocObject View',
                        'Internet Explorer_Server']:
        hwnd = win32gui.FindWindowEx(hwnd, 0, child_class, None)
        assert hwnd, "Couldn't find '%s'" % (child_class,)
    # But here is the point - once you have an 'Internet Explorer_Server',
    # you can send a message and use ObjectFromLresult to get it back.
    msg = win32gui.RegisterWindowMessage("WM_HTML_GETOBJECT")
    rc, result = win32gui.SendMessageTimeout(hwnd, msg, 0, 0, win32con.SMTO_ABORTIFHUNG, 1000)
    ob = pythoncom.ObjectFromLresult(result, pythoncom.IID_IDispatch, 0)
    doc = Dispatch(ob)
    # just to prove it works, set the background color of the document.
    for color in "red green blue orange white".split():
        doc.bgColor = color
        time.sleep(0.2) 
开发者ID:IronLanguages,项目名称:ironpython2,代码行数:21,代码来源:testExplorer.py

示例3: dumpSpecifiedWindow

# 需要导入模块: import win32gui [as 别名]
# 或者: from win32gui import FindWindowEx [as 别名]
def dumpSpecifiedWindow(hwnd, wantedText=None, wantedClass=None):
    '''
    :param hwnd: 父窗口句柄
    :param wantedText: 指定子窗口名
    :param wantedClass: 指定子窗口类名
    :return: 返回父窗口下所有子窗体的句柄
    '''
    windows = []
    hwndChild = win32gui.FindWindowEx(hwnd, None, wantedClass, wantedText)
    windows.append(hwndChild)
    while True:
        hwndChild = win32gui.FindWindowEx(hwnd, hwndChild, wantedClass, wantedText)
        if hwndChild:
            windows.append(hwndChild)
        else:
            return windows 
开发者ID:bluestinger,项目名称:PyAutoTrading,代码行数:18,代码来源:winguiauto.py

示例4: dumpSpecifiedWindow

# 需要导入模块: import win32gui [as 别名]
# 或者: from win32gui import FindWindowEx [as 别名]
def dumpSpecifiedWindow(hwnd, wantedText=None, wantedClass=None):
    '''
    :param hwnd: 父窗口句柄
    :param wantedText: 指定子窗口名
    :param wantedClass: 指定子窗口类名
    :return: 返回父窗口下所有子窗体的句柄
    '''
    windows = []
    hwndChild = None
    while True:
        hwndChild = win32gui.FindWindowEx(hwnd, hwndChild, wantedClass, wantedText)
        if hwndChild:
            textName = win32gui.GetWindowText(hwndChild)
            className = win32gui.GetClassName(hwndChild)
            windows.append((hwndChild, textName, className))
        else:
            return windows 
开发者ID:wangdkchina,项目名称:pyautotrade_tdx,代码行数:19,代码来源:winguiauto.py

示例5: dumpWindow

# 需要导入模块: import win32gui [as 别名]
# 或者: from win32gui import FindWindowEx [as 别名]
def dumpWindow(hwnd, wantedText=None, wantedClass=None):
    """
    :param hwnd: 窗口句柄
    :param wantedText: 指定子窗口名
    :param wantedClass: 指定子窗口类名
    :return: 返回父窗口下所有子窗体的句柄
    """
    windows = []
    hwndChild = None
    while True:
        hwndChild = win32gui.FindWindowEx(hwnd, hwndChild, wantedClass, wantedText)
        if hwndChild:
            textName = win32gui.GetWindowText(hwndChild)
            className = win32gui.GetClassName(hwndChild)
            windows.append((hwndChild, textName, className))
        else:
            return windows 
开发者ID:drongh,项目名称:pyAutoTrading,代码行数:19,代码来源:winguiauto.py

示例6: find_traywindow_hwnd

# 需要导入模块: import win32gui [as 别名]
# 或者: from win32gui import FindWindowEx [as 别名]
def find_traywindow_hwnd():
    global _hwnd
    if _hwnd is None:
        try:
            _hwnd = win32gui.FindWindowEx(0, 0, 'wxWindowClassNR', '')
        except:
            pass
    return _hwnd 
开发者ID:kenorb-contrib,项目名称:BitTorrent,代码行数:10,代码来源:ToolTip.py


注:本文中的win32gui.FindWindowEx方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。