Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用 ttk.Treeview 小部件作为 GUI 的一个元素。但是我需要改变它的默认行为。双击父项时如何防止展开子项。它只能通过在节点 (+) 区域中单击 LMB 来打开。
"break"
这可以防止将事件传播到其他绑定。 在你的情况下:
tree.bind('<Double-1>', lambda e: 'break')