Du måste skapa en popup-meny och binda den till Button-3. Här är ett exempel snabbt byggt från ett av mina projekt
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)