在 PySimpleGui 中创建自定义按钮

Posted

技术标签:

【中文标题】在 PySimpleGui 中创建自定义按钮【英文标题】:Create Custom Buttons in PySimpleGui 【发布时间】:2022-01-21 17:31:59 【问题描述】:

我正在使用 PySimpleGui 制作一个 GUI,我希望我的一个按钮是一个圆圈,一个是更大的。有没有办法做到这一点?如果是这样,怎么做?我正在使用 TKinter 端口。

【问题讨论】:

【参考方案1】:

尝试sg.Buttonimage_filenameimage_data 选项,并从主题设置中设置正确的按钮颜色,并将边框宽度设置为0。

这是它的工作原理示例,请记住在以下代码中使用您的图像文件。

import PySimpleGUI as sg

font = ('Helvetica', 12, 'bold italic')
sg.theme('Dark')
sg.set_options(font=font)
colors = (sg.theme_background_color(), sg.theme_background_color())

layout = [
    [sg.Button('Blue\nCircle', button_color=colors, image_filename='d:/circle_blue.png', border_width=0)]
]
window = sg.Window('Image Button', layout, finalize=True)

while True:
    event, values = window.read()
    if event == sg.WINDOW_CLOSED:
        break
window.close()

【讨论】:

你忘记了sg。我仍然收到错误“AttributeError:模块'PySimpleGUI'没有属性'image_filename'” No sg 忘了这里,你可能会误解这里的东西。不要使用sg.image_filename 作为sg.Button 的选项,否则你会得到AttributeError: module 'PySimpleGUI' has no attribute 'image_filename'

以上是关于在 PySimpleGui 中创建自定义按钮的主要内容,如果未能解决你的问题,请参考以下文章

如何在 QT5.6.1 中创建自定义按钮

在 React 中创建自定义输入类型文件按钮

使用 JButton 在 Java 中创建自定义按钮

如何在 Android Studio 中创建自定义图像按钮?

如何在 Kendo UI 网格中创建自定义删除/销毁按钮/命令?

在 Java 中创建自定义 JButton