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

从源码分析DEARGUI之checkbox

作者:互联网

def add_checkbox(*args, **kwargs): # real signature unknown
    """
    Adds a checkbox widget.
    
    Return Type: None
    
    
    Parameters
    __________
    
    * name : str
    	
    
    * Keyword Only Arguments
    ____________________
    	
    
    * default_value : int
    	
    
    * callback : str
    	Registers a callback
    
    * tip : str
    	Adds a simple tooltip
    
    * parent : str
    	Parent to add this item to. (runtime adding)
    
    * before : str
    	This item will be displayed before the specified item in the parent.

               

标签:checkbox,Adds,parent,DEARGUI,item,源码,str,before
来源: https://blog.51cto.com/u_15177056/2725539