ポップアップメニューを作成し、それをButton-3にバインドする必要があります。これが私のプロジェクトの1つからすばやく構築された例です
popup1 = tk.Menu(tree, tearoff=0)
popup1.add_command(
command=your_copy,
label="Copy")
def your_copy():
item = tree.selection()[0]
log.clipboard_clear()
log.clipboard_append(tree.item(item, option='text')
def popup_menu(event):
tree.identify_row(event.y)
popup1.post(event.x_root, event.y_root)
tree.bind('<Button-3>', popup_menu)