首页 > 代码库 > easyui 点滴记录

easyui 点滴记录

【1.安装】:pip install easygui

【2.常用】

  1. integerbox  交互式输入数字

  2. textbox 交互式输入文本

  3. ccbox  确认判断

  4. boolbox 是否判断

  5. multchoicebox 多选条目

  6. choicebox 单选条目

  7. buttonbox 单选按钮

【3.体验一遍】

import easygui as g
for item in [‘ynbox‘
    , ‘ccbox‘
    , ‘boolbox‘
    , ‘indexbox‘
    , ‘msgbox‘
    , ‘buttonbox‘
    , ‘integerbox‘
    , ‘multenterbox‘
    , ‘enterbox‘
    , ‘exceptionbox‘
    , ‘choicebox‘
    , ‘codebox‘
    , ‘textbox‘
    , ‘diropenbox‘
    , ‘fileopenbox‘
    , ‘filesavebox‘
    , ‘passwordbox‘
    , ‘multpasswordbox‘
    , ‘multchoicebox‘
    , ‘abouteasygui‘
    , ‘egversion‘
    , ‘egdemo‘
    , ‘EgStore‘
    ]:
    getattr(g, item)(item)

【4.效果】


easyui 点滴记录