设计一个主窗口,在其中添加三个标签和三个按钮,当点击按钮时,对标签的内容和色彩进行修改。
import tkinter as tk
root = tk.Tk()
def f1():
label1.config(text='点我,我加油了,哈哈', bg='#A23400')
def f2():
label2.config(text='successful', bg='#000093')
def f3():
label3.config(text='peculiar', bg='#C4C400')
label1 = tk.Label(root, text='标签1', fg='red', bg='#6C6C6C')
label1.pack(anchor=tk.NE, ipadx=0.2, ipady=0.2)
label2 = tk.Label(root, text='标签2', fg='white', bg='#6C6C6C')
label2.pack(anchor=tk.NE, ipadx=0.2, ipady=0.2)
label3 = tk.Label(root, text='标签3', fg='white', bg='#6C6C6C')
label3.pack(anchor=tk.NE, padx=0.5, pady=0.5)
button1 = tk.Button(root, text='按钮1', command=f1)
button1.pack(anchor=tk.NW)
button2 = tk.Button(root, text='按钮2', command=f2)
button2.pack(anchor=tk.NW)
button3 = tk.Button(root, text='按钮3', command=f3)
button3.pack(anchor=tk.NW)
root.mainloop()
click前
click后
本次代码基本完成功能,但是代码重复的部分很多,下一个版本进行优化。
0