ICode9

精准搜索请尝试: 精确搜索
  • 从源码分析DEARGUI之add_menu_items2021-04-22 20:06:34

    from dearpygui.dearpygui import * def called_f(a,b): print(a,b)if name == ‘main’: add_additional_font(“潦草丫丫字体.ttf”,size=30)# add_item_color_style("name",style=2,color=[0.1,0.5,0.3]) # add_combo("tst", ["a", "b"], ca

  • 从源码分析DEARGUI之add_color_edit3和42021-04-22 20:04:12

    def add_color_edit3(*args, **kwargs): # real signature unknown     """     Adds an rgb color editing widget. Click and draging the color square will copy the color to be applied on any other color widget.          R

  • 从源码分析DEARGUI之collapsing_header2021-04-22 20:03:50

    def add_collapsing_header(*args, **kwargs): # real signature unknown     """     Adds a collapsing header to add items to. Must be closed with the end_collapsing_header command.          Return Type: None          

  • 从源码分析DEARGUI之checkbox2021-04-22 20:03:36

    def add_checkbox(*args, **kwargs): # real signature unknown     """     Adds a checkbox widget.          Return Type: None               Parameters     __________          * name : str            

  • 从源码分析DEARGUI之button2021-04-22 20:03:08

    def add_button(*args, **kwargs): # real signature unknown     """     Adds a button.          Return Type: None               Parameters     __________          * name : str               * Key

  • 从源码分析DEARGUI之添坐标系2021-04-22 20:02:47

    def add_area_series(*args, **kwargs): # real signature unknown     """     Adds an area series to a plot.          Return Type: None               Parameters     __________          * plot : str     

  • 从源码分析DEARGUI之添加字体2021-04-22 20:02:30

    def add_additional_font(*args, **kwargs): # real signature unknown     """     Adds additional font.          Return Type: None               Parameters     __________          * file : str      ttf or

  • 从源码分析DEARGUI之键盘鼠标事件监控2021-04-22 19:57:24

    from dearpygui.dearpygui import *# 所有事件api# get_mouse_drag_delta()# get_mouse_pos()# is_key_down()# is_key_pressed()# is_key_released()# is_mouse_button_clicked()# is_mouse_button_double_clicked()# is_mouse_button_down()# is_mouse_button_dragg

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有