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.
tree.GetSelection() は、実際のツリー ID オブジェクトを提供します。
listbox.GetSelection() が返すのと同じように、選択の int を取得したいと思います。
誰もこれを行う方法を知っていますか?
TreeItemIdオブジェクトGetIDには、ツリーでその ID を返すメソッドが必要です。
TreeItemId
GetID
ツリー コントロールには、ツリー項目に関する追加情報を格納する機能が組み込まれています。
item= self.tree.GetSelection() self.tree.SetPyData(item,{"Source":"C:\hi.png","Opacity":1}) print self.tree.GetPyData(item)