在本文中,我们将学习wx.TreeCtrl中的GetBoundingRect()方法。 GetBoundingRect()返回限制该项目的矩形。如果textOnly为True,则仅返回项目标签周围的矩形,否则,将考虑项目的图像。如果未成功检索矩形,例如当前不可见,则返回值可能为None。
GetBoundingRect()接受两个参数item和textOnly。
Syntax:
wx.TreeCtrl.GetBoundingRect(self, item, textOnly)
参数:
Parameter | Type | Description |
item | wx.TreeItemId | 我们想要确保可见的项目。 |
纯文本 | boolean | 如果textOnly为True,则仅返回项目标签周围的矩形,否则将考虑该项目的图像。 |
Python
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")
item3 = self.tree.AppendItem(item, "SubItem")
item4 = self.tree.AppendItem(item, "SubItem")
item5 = self.tree.AppendItem(item2, "SubItem")
item6 = self.tree.AppendItem(item, "SubItem")
# print bound rectangle pyObject
print(self.tree.GetBoundingRect(item, False))
# expand all nodes of the tree
self.tree.ExpandAllChildren(item)
sizer = wx.BoxSizer(wx.VERTICAL)
sizer.Add(self.tree, 0, 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()
if __name__ == '__main__':
app = wx.App(redirect = False)
frame = MainFrame()
app.MainLoop()
输出:
(0, 0 , 10, 10)
相关用法
- 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 – GetBoundingRect() method in wx.TreeCtrl。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。