📄 dlgutils.py
字号:
# Generic utilities for dialog functions.# This module is part of the spambayes project, which is Copyright 2002# The Python Software Foundation and is covered by the Python Software# Foundation license.def MAKELONG(l,h): return ((h & 0xFFFF) << 16) | (l & 0xFFFF)MAKELPARAM=MAKELONGdef SetWaitCursor(wait): import win32gui, win32con if wait: hCursor = win32gui.LoadCursor(0, win32con.IDC_WAIT) else: hCursor = win32gui.LoadCursor(0, 0) win32gui.SetCursor(hCursor)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -