在本文中,我们将学习wxPython的wx.ToolBar类的FindToolForPosition()函数。 FindToolForPosition()用于查找给定鼠标位置的工具。它占据窗口的x和y位置。
用法:
wx.ToolBar.FindToolForPosition(self, x, y)
参数:
参数 | 输入类型 | 描述 |
---|---|---|
x | int | X位置。 |
y | int | Y位置。 |
Return Type:
wx.ToolBarToolBase
代码示例1:
import wx
class Example(wx.Frame):
global count
count = 0;
def __init__(self, *args, **kwargs):
super(Example, self).__init__(*args, **kwargs)
self.InitUI()
def InitUI(self):
self.locale = wx.Locale(wx.LANGUAGE_ENGLISH)
pnl = wx.Panel(self)
self.toolbar = self.CreateToolBar()
# Add Tools Using AddTool function
rtool = self.toolbar.AddTool(13, 'twoTool', wx.Bitmap('wrong.png'), shortHelp ="Simple Tool2")
self.toolbar.Realize()
self.SetSize((350, 250))
self.SetTitle('Control')
self.Centre()
# print wx.ToolBarToolBase object o tool
print(self.toolbar.FindToolForPosition(5, 5))
def main():
app = wx.App()
ex = Example(None)
ex.Show()
app.MainLoop()
if __name__ == '__main__':
main()
输出:
<wx._core.ToolBarToolBase object at 0x0000009B92B041F0>
代码示例2:
import wx
class Example(wx.Frame):
global count
count = 0;
def __init__(self, *args, **kwargs):
super(Example, self).__init__(*args, **kwargs)
self.InitUI()
def InitUI(self):
self.locale = wx.Locale(wx.LANGUAGE_ENGLISH)
pnl = wx.Panel(self)
self.toolbar = self.CreateToolBar()
# Add Tools Using AddTool function
rtool = self.toolbar.AddTool(13, 'twoTool', wx.Bitmap('wrong.png'), shortHelp ="Simple Tool2")
stool = self.toolbar.AddTool(14, 'twoTool', wx.Bitmap('user.png'), shortHelp ="Simple Tool2")
self.toolbar.Realize()
self.SetSize((350, 250))
self.SetTitle('Control')
self.Centre()
# print wx.ToolBarToolBase object o tool
print(self.toolbar.FindToolForPosition(40, 5).GetLabel())
def main():
app = wx.App()
ex = Example(None)
ex.Show()
app.MainLoop()
if __name__ == '__main__':
main()
输出:
twoTool
相关用法
- wxPython FindControl()用法及代码示例
- wxPython GetClassDefaultAttributes()用法及代码示例
- wxPython GetToolBitmapSize()用法及代码示例
- wxPython GetMargins()用法及代码示例
- wxPython GetToolByPos()用法及代码示例
注:本文由纯净天空筛选整理自RahulSabharwal大神的英文原创作品 wxPython | FindToolForPosition() function in python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。