典型的弹出:
sg.Popup("This is a simple popup")
这将显示一个带有我不想要的文本的“确定”按钮。如何删除此按钮?
您应该调用popup_no_buttons
而不是更改 button_type 参数。该文档指出它并不打算供用户使用。
import PySimpleGUI as sg
sg.popup_no_buttons('This is a popup without buttons')
如果您确实使用它,建议您使用该参数的“枚举”值,以便在编号更改时您的代码将继续运行。该值是sg.POPUP_BUTTONS_NO_BUTTONS
只需提供这样的button_type
论点:
sg.Popup("This is a simple popup", button_type=5)
在 PySimpleGUI 中有 5 种类型的按钮配置:
Yes, No: 1
Cancel: 2
Error: 3
Ok, cancel: 4
No button: 5