Town Field Poem:
The Pure Heart sentiment wisdom language, does not have the world name and the benefit. Learn water under the hundred rivers, give up arrogant slow meaning.
Learn to have a small return to feed root, willing to cast a conscience blog. Sincere in this writing experience, willing to see the text to inspire.
——————————————————————————————————————————
Code
From Tkinter import *root=tk () #创建一个框架, in this framework responds to event Frame=frame (root,width=200,height=200) def callbackleft (event): Print ("relative to the upper-left corner of the application, the left-click position is", Event.x,event.y) print ("The position of the left click is relative to the upper-left corner of the screen, Event.x_root,event.y_root) def Callbackright (event):p rint ("Right click Position is", Event.x,event.y) print ("Right click on the location is", event.x_root,event.y_root) # bind Bind button refers to the mouse click event # event itself-a detailed description of the event # 1 left Key # 3 right-Frame.bind ("<Button-1>", Callbackleft) frame.bind ("<button-3 > ", Callbackright) Frame.pack () Mainloop ()
Result
And then I ordered a few,
——————————————————————————————————————————
The essence of the blog, in the technical part, more in the town yard a poem. Python version 3.5, System Windows7.
Python is a good language and deserves to be studied hard. I am following the small Turtle Video tutorial to learn, recommended.
I am a novice, so if the content of the blog can be improved, or even the wrong place, please leave a comment, I will try to correct, strive to achieve a conscience blog.
Note: This article is only as a scientific research study, if I inadvertently violated your rights and interests, please be sure to timely inform, I will make corrections.
Python3 Tkinter base Frame bind mouse key to print click Position Event.x event.x_root