我正在使用Urwid按钮并想知道是否有办法直接在按钮上处理按键事件?
urwid.Button((item["customer"] + "/ " + item["case"]), button_press_pick_case,
user_data=item)
我知道我可以通过捕获MainLoop的unhandled_input
然后找到当前关注的按钮来做到这一点,但我想知道是否有更简单的方法。
由于