我想在屏幕上画一个圆圈,但它应该是点击的,我应该能够点击这个圆圈后面的东西。到目前为止,我实现了绘制圆圈并使其透明,但我无法使其点击。我知道使用 pywin32win32con.WS_EX_LAYERED
标志是可能的,但 PySimpleGUI 文档中没有关于此的信息。我怎么解决这个问题?
我当前的窗口配置:
window = sg.Window('Sample window', layout,
keep_on_top=True,
auto_size_buttons=False,
grab_anywhere=False,
no_titlebar=True,
return_keyboard_events=False,
alpha_channel=0.8,
use_default_focus=False,
transparent_color='red',
finalize=True)
如果使用 PySimpleGUI 无法实现,是否可以使用 pywin32 模块组合?