0
我想在計時器上顯示鼠標位置。我用winfo_pointerxy(),這裏是從my_func,並將部分代碼():在畫布上繪圖// python tkinter
curr_x, curr_y = mouseFrame.winfo_pointerxy()
curr_x = mouseFrame.canvasx(curr_x)
curr_y = mouseFrame.canvasy(curr_y)
mouseFrame.create_oval(curr_x, curr_y, curr_x + 5, curr_y + 5, fill='green')
start_btn.after(time_interval, my_func)
好像我用canvasx()錯誤的原因仍然返回從屏幕的左上方的位置計算。