gpt4 book ai didi

python - Tkinter,更改按钮及其命令

转载 作者:行者123 更新时间:2023-12-01 08:46:02 24 4
gpt4 key购买 nike

我们有一个调用函数 A 的按钮。我们希望函数 A 更改该按钮的图像并更改其命令以调用函数 B 而不是 A。如何做到这一点?我们不能同时有两个按钮。

提前谢谢您。

最佳答案

您可以使用配置功能配置按钮。

from tkinter import *

master = Tk()

def newFunc():
print ("newclick")

def callback():
print ("oldclick!")
b.configure(image=image_new, text = "New button text", command=newFunc)

image_old = PhotoImage(file=your_imagepath)
image_new = PhotoImage(file=your_second_imagepath)
b = Button(master, image=image_old, text="Button Before click", command=callback)
b.pack()

mainloop()

关于python - Tkinter,更改按钮及其命令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53299942/

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