- 论坛徽章:
- 0
|
最近学习python
在使用一些函数时对他的一些参数不是很清楚
比如:
我要使用 wx.Frame.SetCursor 这个函数
在交互窗口中 使用 help(wx.Frame.SetCursor) 命令
得到
SetCursor(*args, **kwargs) unbound wx._windows.Frame method
SetCursor(self, Cursor cursor) -> bool
Sets the window's cursor. Notice that the window cursor also sets it
for the children of the window implicitly.
The cursor may be wx.NullCursor in which case the window cursor will
be reset back to default.
信息
但从中我并不能找到Cursor的具体情况
Cursor 可以 通过 wx.StockCursor(wx.CURSOR_MAGNIFIER)得到
但除了 CURSOR_MAGNIFIER 以外,我怎么能找到其他的StockCurser 呢?
说了这么多,总的意思就是如何才能在python中找到详细的帮助信息? |
|