Info: Popup_menu, Multi_query, Selection_list, Multi_selectionlist Example script that perfoms all UI's offerd by the appuifw module: appuifw_overview.py
The scripts below use different functions of the appuifw module to perform different UIs: Popup_menu: appuifw.popup_menu(list, label)
Example script: popup.py
|
|
|
Multi_query: appuifw.multi_query(label1, label2)
Example script: multi_query.py
|
|
|
Selection_list: appuifw.selection_list(choices=list , search_field=1) import appuifw # define the list of items (items must written in unicode! -> put a u in front) # create the selection list # use the result of the selection to trigger some action (here we just print something)
Example script: selection_list.py
|
With search pane:
|
|
Multi_selectionlist: 2 different ones: # 1. with checkbox: import appuifw # define the list of items (items must written in unicode! -> put a u in front) # create the multi-selection list with checkbox Example script: multi_selection_list_checkbox.py
# 2. with checkmark:
# define the list of items (items must written in unicode! -> put a u in front) # create the multi-selection list with checkmark
Example script: multi_selection_list_checkmark.py |
1.
2.
|
|
|