编程语言
首页 > 编程语言> > 从源码分析DEARGUI之button

从源码分析DEARGUI之button

作者:互联网

def add_button(*args, **kwargs): # real signature unknown
    """
    Adds a button.
    
    Return Type: None
    
    
    Parameters
    __________
    
    * name : str
    	
    
    * Keyword Only Arguments
    ____________________
    	
    
    * small : bool
    	Small button, useful for embedding in text.
    
    * arrow : bool
    	Arrow button.
    
    * direction : int
    	A cardinal direction
    
    * callback : str
    	Registers a callback
    
    * tip : str
    	Adds a simple tooltip
    
    * parent : str
    	Parent to add this ite

               

标签:direction,Adds,DEARGUI,add,源码,bool,str,button
来源: https://blog.51cto.com/u_15177056/2725541