Sie müssen ein Popup-Menü erstellen und es an Button-3 binden. Hier ist ein Beispiel, das schnell aus einem meiner Projekte erstellt wurde
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)