我正在寻找有关 pygame 的 pgu gui 列表的帮助。我需要知道它们有哪些方法和属性,以便我可以将它们包含在我的程序中
问问题
675 次
1 回答
0
我的第一个建议
使用 python 的内置函数进行自省
import pgu.gui.List
import inspect
help(pgu.gui.List) # to read out the doc strings
print dir(pgu.gui.List) # to get the namespace of List class
# to get all methods of that class
all_functions = inspect.getmembers(pgu.gui.List, inspect.isfunction)
始终查看源代码,当它可用时
从代码中:您可以创建和清除列表。
class List(ScrollArea):
"""A list of items in an area.
<p>This widget can be a form element, it has a value set to whatever item is selected.</p>
<pre>List(width,height)</pre>
"""
....
def clear(self):
"""Clear the list.
<pre>List.clear()</pre>
"""
...
用法 :
# Create the actual widget
usagelist = gui.List(width, height)
于 2010-10-29T20:11:33.130 回答