wxPython | Python中的FindToolForPosition()函数
在本文中,我们将学习 wxPython 的 wx.ToolBar 类的 FindToolForPosition()函数。 FindToolForPosition() 用于查找给定鼠标位置的工具。它需要窗口的 x 和 y 位置。
Syntax:
Parameters :
Parameter | Input Type | Description |
---|---|---|
x | int | X position. |
y | int | Y position. |
Return Type:
代码示例 1:
wx.ToolBar.FindToolForPosition(self, x, y)
输出 :
wx.ToolBarToolBase
代码示例 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")
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()
输出: