टिंकर ईवेंट को बाईं माउस बटन को दबाए रखने के लिए बाध्य करने के लिए, हम निम्नलिखित कदम उठा सकते हैं -
-
टिंकर फ्रेम का एक उदाहरण बनाएं।
-
win.geometry . का उपयोग करके फ़्रेम का आकार सेट करें विधि।
-
इवेंट हैंडलर को परिभाषित करें "हैंडलर1" माउस को ले जाने पर एक स्टेटमेंट प्रिंट करने के लिए लेफ्ट बटन को दबाए रखा जाता है।
-
किसी अन्य ईवेंट हैंडलर को परिभाषित करें "हैंडलर2" माउस बटन जारी होने पर एक स्टेटमेंट प्रिंट करने के लिए।
-
बाइंड करने के लिए बाइंड विधि का उपयोग करें
हैंडलर1 . के साथ । -
बाइंड करने के लिए फिर से बाइंड विधि का उपयोग करें
हैंडर2 . के साथ । -
अंत में, एप्लिकेशन विंडो का मेनलूप चलाएं।
उदाहरण
# Import required libraries from tkinter import * # Create an instance of tkinter frame win = Tk() # Define the geometry of the window win.geometry("750x250") # Define a function def handler1(e): print("You are moving the Mouse with the Left Button Pressed.") def handler2(e): print("Button Released") # Define a Label in Main window Label(win, text="Move the Mouse with the Left Button Pressed", font='Helvetica 15 underline').pack(pady=30) # Bind the Mouse events with the Handler win.bind('<B1-Motion>', handler1) win.bind('<ButtonRelease-1>', handler2) win.mainloop()
आउटपुट
जब आप कोड निष्पादित करते हैं, तो यह निम्न स्क्रीन दिखाएगा -
अब, माउस को लेफ्ट बटन दबाकर ले जाएं और यह कंसोल पर निम्न आउटपुट दिखाएगा
You are moving the Mouse with the Left Button Pressed. You are moving the Mouse with the Left Button Pressed. You are moving the Mouse with the Left Button Pressed. You are moving the Mouse with the Left Button Pressed. You are moving the Mouse with the Left Button Pressed.
जब आप माउस का बायाँ बटन छोड़ते हैं, तो यह निम्नलिखित दिखाएगा -
Button Released