如何在tkinter-python的按钮小部件中使用activeforeground选项



我是Tkinter的新手,我的问题很简单,在按钮小部件中有activeforeground选项,我想知道如何使用它。

您在tkinter中指定一个按钮,如下所示:Button(<parent>, text=<text>, activeforeground=<colour>,....)由于activeforeground是一个关键字参数,您只需将其放在括号中并赋予其颜色即可。或者你到底想做什么?

这是一个带有按钮的简单窗口,您可以看到activeforeground是如何在这里实现的,以及单击按钮时会发生什么。

import tkinter
from tkinter import*
root = tkinter.Tk()
Button1 = tkinter.Button(root,text="click me!",activeforeground="red") #<---- HERE
Button1.place(relx=0.5,rely=0.5,anchor=CENTER)
root.mainloop()

此页面提供不同关键字的列表:https://www.tutorialspoint.com/python/tk_button.htm

相关内容

  • 没有找到相关文章

最新更新