gpt4 book ai didi

python - python 中带有警报框的 WindowsBaloonTip/TrayTip 通知

转载 作者:太空宇宙 更新时间:2023-11-03 18:28:10 27 4
gpt4 key购买 nike

我在 Windows 7 机器上使用 Python 2.7。我的通知工作正常。但是,当我包含警报框/对话框时,该过程会忽略警报框代码,并且不会弹出对话框。我的通知代码是:

class WindowsBalloonTip:
def __init__(self, title, msg):
message_map = {
win32con.WM_DESTROY: self.OnDestroy,
}
# Register the Window class.
iconPathName= "D:\icon.ico"

wc = WNDCLASS()
hinst = wc.hInstance = GetModuleHandle(None)
wc.lpszClassName = "PythonTaskbar"
wc.lpfnWndProc = message_map # could also specify a wndproc.
classAtom = RegisterClass(wc)
# Create the Window.
style = win32con.WS_OVERLAPPED | win32con.WS_SYSMENU
self.hwnd = CreateWindow( classAtom, "Taskbar", style, \
0, 0, win32con.CW_USEDEFAULT, win32con.CW_USEDEFAULT, \
0, 0, hinst, None)
UpdateWindow(self.hwnd)
print iconPathName
icon_flags = win32con.LR_LOADFROMFILE | win32con.LR_DEFAULTSIZE
try:
hicon = LoadImage(hinst,iconPathName, win32con.IMAGE_ICON, 16, 16,icon_flags)
except:
hicon = LoadIcon(0, win32con.IDI_APPLICATION)
logging.debug("Image adding fail")
flags = NIF_ICON | NIF_MESSAGE | NIF_TIP
nid = (self.hwnd, 0, flags, win32con.WM_USER+20, hicon, "title")
Shell_NotifyIcon(NIM_ADD, nid)
Shell_NotifyIcon(NIM_MODIFY, \
(self.hwnd, 0, NIF_INFO, win32con.WM_USER+20,\
hicon, "Balloon tooltip",msg,200,title))
# self.show_balloon(title, msg)
global sleep
time.sleep(sleep)
DestroyWindow(self.hwnd)
UnregisterClass(wc.lpszClassName, None)
def OnDestroy(self, hwnd, msg, wparam, lparam):
nid = (self.hwnd, 0)
Shell_NotifyIcon(NIM_DELETE, nid)
PostQuitMessage(0)

我的警报框代码是:

import win32api
a=0
a=win32api.MessageBox(0, 'message', 'title',0)

首先,我使用通知,然后使用对话框。当我调试时,我发现问题是由于 UnregisterClass(wc.lpszClassName, hinst) 引起的。我尝试使用它并收到错误消息:

classAtom = RegisterClass(wc)
pywintypes.error: (1410, 'RegisterClass', 'Class already exists.')

我的要求是从不同的函数调用通知代码,然后在单个进程中从其他函数调用对话框

最佳答案

我遇到了一个非常相似的问题: Refresh Windows Balloon Tip from Python thread

检查一下: Multiple WindowsBaloonTip / TrayTip Notifications?

上述修复允许我对一个窗口进行核攻击并取消注册,但只能从一个线程进行。单独的线程无法处理同一个窗口。不确定这是否也适用于函数..

这是一条评论,不是答案..但我现在 <50。

关于python - python 中带有警报框的 WindowsBaloonTip/TrayTip 通知,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22839878/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com