如何获得单击位置的坐标(X,Y)?

时间:2018-10-04 14:02:45

标签: python tkinter

我有以下代码:

from tkinter import *
from tkinter import ttk
root=Tk()
def GetCordinates():
    x=0.0
    y=0.0

img2=PhotoImage(file="txtd.png")
img=img2.subsample(x=2, y=2)

bu1=ttk.Button(root, text="Get cordinates")
bu1.grid(row=5, column=1)
bu1.config(command=GetCordinates)

image=ttk.Label(root)
image.config(image=img)
image.grid(row=5, column=0)
root.mainloop()

如何从单击照片的位置获取坐标(X&Y)?

谢谢。

0 个答案:

没有答案