题库 Python题库 题目列表 以下代码实现将鼠标移到按钮上时按钮变红,鼠标移开时...
单选题

以下代码实现将鼠标移到按钮上时按钮变红,鼠标移开时按钮变蓝,划线处的代码是?( 

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('<Leave>',changebg1)
root.mainloop()
A.

btn1.bind()

B.

btn1.bind('<Enter>',changebg)

C.

btn1.bind('<Enter>',changebg1)

D.

btn1.bind('<Button-1>',changebg1)

题目信息
2024年 3月 选择题
100%
正确率
0
评论
66
点击