在本文中,我們將學習與wxPython模塊的wx.TreeCtrl類關聯的GetFocusedItem()方法。 GetFocusedItem()函數用於返回聚焦的項目。它返回上次單擊或以其他方式選擇的項目。 GetFocusedItem()方法不需要任何參數。
與GetSelection()不同,可以使用控件是否具有TR_MULTIPLE樣式。
用法:
wx.TreeCtrl.GetFocusedItem(self)
Return Type:wx.TreeItemId
Parameters:沒有參數
在下麵的程序中,我們將返回該項目是否有效。另外,wx.TreeItemId返回對象。
Python
# import required modules
import wx
class MyTree(wx.TreeCtrl):
def __init__(self, parent, id, pos, size, style):
wx.TreeCtrl.__init__(self, parent, id, pos, size, style)
class TreePanel(wx.Panel):
def __init__(self, parent):
wx.Panel.__init__(self, parent)
# create tree control in window
self.tree = MyTree(self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize,
wx.TR_HAS_BUTTONS)
# create tree root
self.root = self.tree.AddRoot('root')
self.tree.SetPyData(self.root, ('key', 'value'))
# add item to root
item = self.tree.AppendItem(self.root, "Item")
item2 = self.tree.AppendItem(self.root, "Item")
# set focused/selected item in control
self.tree.SetFocusedItem(item)
# print if first visible item is
# a valid tree item
if(self.tree.GetFocusedItem().IsOk()):
print("Valid Item")
print(self.tree.GetFocusedItem())
else:
print("Invalid Item")
sizer = wx.BoxSizer(wx.VERTICAL)
sizer.Add(self.tree, 100, wx.EXPAND)
self.SetSizer(sizer)
class MainFrame(wx.Frame):
def __init__(self):
wx.Frame.__init__(self, parent=None, title='TreeCtrl Demo')
panel = TreePanel(self)
self.Show()
# Driver Code
if __name__ == '__main__':
app = wx.App(redirect=False)
frame = MainFrame()
app.MainLoop()
輸出:
Valid Item <wx._core.TreeItemId object at 0x000001DAED4141F8>
相關用法
- wxPython wx.ToolBar AddControl()用法及代碼示例
- wxPython wx.ToolBar AddSeparator()用法及代碼示例
- wxPython wx.RadioButton GetValue()用法及代碼示例
- wxPython wx.RadioButton SetValue()用法及代碼示例
- wxPython wx.RadioBOx IsItemShown()用法及代碼示例
- wxPython wx.RadioBOx SetItemHelpText()用法及代碼示例
- wxPython wx.RadioBox SetItemLabel()用法及代碼示例
- wxPython wx.RadioBox GetItemToolTip()用法及代碼示例
- wxPython wx.RadioBox GetString()用法及代碼示例
- wxPython wx.RadioBox IsItemEnabled()用法及代碼示例
注:本文由純淨天空篩選整理自RahulSabharwal大神的英文原創作品 wxPython – GetFocusedItem() method in wx.TreeCtrl。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。