单选题
以下代码实现将鼠标移到按钮上时按钮变红,鼠标移开时按钮变蓝,划线处的代码是?()
from tkinter import*root=Tk()root.title()root.geometry('450x350')btn1=Button(root,text='1')btn1.place(x=200,y=50,width=40,height=40)def changebg(event): #鼠标移到按钮上按钮变红 event.widget['bg']='red'def changebg1(event): #鼠标离开按钮上按钮变蓝 event.widget['bg']='blue'____________btn1.bind('',changebg1)root.mainloop()
A.
btn1.bind()
B.
btn1.bind('',changebg)
C.
btn1.bind('',changebg1)
D.
btn1.bind('',changebg1)
发表评论 取消回复