2010-10-29 52 views
0

我正在尋找關於pyguame中pgu gui列表的幫助。我需要知道他們有哪些方法和屬性,所以我可以將它們包含在我的程序pgu/pygame中的列表

+0

請問我的回答可以幫助您? – pyfunc 2010-10-29 21:48:08

+0

感謝您的回答,pyfunc。我確實分析了這些示例,但是當我導入pgu.gui.List時,我得到:沒有名爲pgu.gui.List的模塊 – Carlos 2010-11-01 19:28:48

回答

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) 
+0

感謝您的回答,pyfunc。我確實分析了這些示例,但是當我導入pgu.gui.List時,我得到:沒有名爲pgu.gui.List的模塊 – Carlos 2010-11-01 10:50:39