Python implements a way to traverse windows and output the caption of a window

Source: Internet
Author: User
The example in this article describes how Python implements a way to traverse windows and output the caption of a window. Share to everyone for your reference. Specific as follows:

This code allows Python to traverse the windows of all running programs under the current window and get the caption output from the running Windows.

#! /usr/bin/env python#-*-coding:utf-8-*-from Win32gui Import *titles = set () def foo (hwnd,mouse): #去掉下面这句就所有都输出了, but I don't need that. Multiple if IsWindow (HWND) and iswindowenabled (HWND) and IsWindowVisible (HWND):  Titles.add (GetWindowText (HWND)) EnumWindows (foo, 0) lt = [T-T in the titles if T]lt.sort () for T in Lt:print t

To output Chinese, you can change the last sentence to:

Print (T.decode (' GB2312 '))

Transcode the GB2312 to Unicode output so that the Output window caption is normal Chinese.

Hopefully this article will help you with Python programming.

  • Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.