7

Python 3.2 と tkinter を使用します。Button-3 (右クリック) で、マウス カーソルが置かれている Treeview ウィジェットのアイテムを選択するにはどうすればよいですか? 私は基本的に、Button-3 イベントで、現在の単一の左クリックと同じ方法でアイテムを選択したいと考えています。

4

1 に答える 1

15

あなたは自分の質問に半分答えました。コードをコーディングしてテストしただけなので、ソリューションのスニペットをここに投稿しても害はないと思います。

def init(self):
    """initialise dialog"""
    # Button-3 is right click on windows
    self.tree.bind("<Button-3>", self.popup)

def popup(self, event):
    """action in event of button 3 on tree view"""
    # select row under mouse
    iid = self.tree.identify_row(event.y)
    if iid:
        # mouse pointer over item
        self.tree.selection_set(iid)
        self.contextMenu.post(event.x_root, event.y_root)            
    else:
        # mouse pointer not over item
        # occurs when items do not fill frame
        # no action required
        pass
于 2014-08-09T09:21:07.477 に答える