标签:from port root python 点击 import pack bind tkinter
from tkinter import * def callback(event): print("at",event.x,event.y) root = Tk() root.title("鼠标点击事件") frame = Frame(root,width=300,height=180) frame.bind("<Button-1>",callback) frame.pack() frame2 = Frame(root,width=300,height=180,bg="lightblue") frame2.pack() root.mainloop()
标签:from port root python 点击 import pack bind tkinter
原文地址:https://www.cnblogs.com/zmzzm/p/12516704.html