什么时候在Tkinter发布Button? [英] How can I identify when a Button is released in Tkinter?

查看:158
本文介绍了什么时候在Tkinter发布Button?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用Tkinter来制作GUI并驱动机器人。

I'm using Tkinter to make a GUI and drive a robot.

我有4个按钮: FORWARD RIGHT BACKWARD LEFT 。只要按下按钮,我想让机器人移动,当按钮被释放时停止。

I have 4 Buttons: FORWARD, RIGHT, BACKWARD and LEFT. I want to make the robot move as long as the Button is being pressed, and stop when the Button is released.

如何在Tkinter发布Button时识别

How can I identify when a Button is released in Tkinter?

推荐答案

您可以为< ButtonPress> 创建绑定

学习关于事件和绑定的一个很好的起点是:< ButtonRelease> href =http://effbot.org/tkinterbook/tkinter-events-and-bindings.htm =nofollow> http://effbot.org/tkinterbook/tkinter-events-and-bindings.htm

A good starting point for learning about events and bindings is here: http://effbot.org/tkinterbook/tkinter-events-and-bindings.htm

这是一个工作示例:

import Tkinter as tk
import time

class Example(tk.Frame):
    def __init__(self, *args, **kwargs):
        tk.Frame.__init__(self, *args, **kwargs)
        self.button = tk.Button(self, text="Press me!")
        self.text = tk.Text(self, width=40, height=6)
        self.vsb = tk.Scrollbar(self, command=self.text.yview)
        self.text.configure(yscrollcommand=self.vsb.set)

        self.button.pack(side="top")
        self.vsb.pack(side="right", fill="y")
        self.text.pack(side="bottom", fill="x")

        self.button.bind("<ButtonPress>", self.on_press)
        self.button.bind("<ButtonRelease>", self.on_release)

    def on_press(self, event):
        self.log("button was pressed")

    def on_release(self, event):
        self.log("button was released")

    def log(self, message):
        now = time.strftime("%I:%M:%S", time.localtime())
        self.text.insert("end", now + " " + message.strip() + "\n")
        self.text.see("end")

if __name__ == "__main__":
    root = tk.Tk()
    Example(root).pack(side="top", fill="both", expand=True)
    root.mainloop()

这篇关于什么时候在Tkinter发布Button?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆