0

我想在屏幕上画一个圆圈,但它应该是点击的,我应该能够点击这个圆圈后面的东西。到目前为止,我实现了绘制圆圈并使其透明,但我无法使其点击。我知道使用 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 模块组合?

4

2 回答 2

2

transparent_color属性可用于创建“点击”窗口。您需要做的就是通过与transparent_color. 这是一个示例,您可以将画布中形状的透明度切换为透明颜色并使其单击。

import PySimpleGUI as sg
layout = [      
    [sg.Canvas(size=(100, 100), key= 'canvas',)],      
    [sg.T('Change circle color to:'), sg.Button('Red'), sg.Button('Blue')]      
    ]      

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)      
window.Finalize()      

canvas = window['canvas']     
cir = canvas.TKCanvas.create_oval(50, 50, 100, 100)      

while True:      
    event, values = window.read()      
    if event is None:      
        break      
    if event == 'Blue':      
        canvas.TKCanvas.itemconfig(cir, fill="Blue")      
    elif event == 'Red': 
        #Here is where the cirle changes to a recolor making it transparent and click through
        canvas.TKCanvas.itemconfig(cir, fill="Red")
于 2020-06-03T11:12:32.497 回答
0
layout = [[sg.Button("Button) ],
    [sg.Graph(canvas_size =(400,100),
    graph_bottom_left=(-400,-400),
    graph_top_right=(400,400),
    background_color='red') ]]

window = sg.Window('Click through transparent',
  layout,background_color='red',keep_on_top=True,
  transparent_color='red', alpha_channel=.5,
  grab_anywhere=True, resizable=True).Finalize()

while True:
    event, values = window.Read()
    if event == sg.WIN_CLOSED:
        break 
    if event == 'Click':
        print(" Button Clicked")

记得把keep_on_top = True 这个在windows上很好用,不知道其他操作系统有没有

于 2020-07-29T22:12:28.230 回答