mirror of
https://github.com/lvgl/lvgl.git
synced 2025-01-21 06:53:01 +08:00
c60ed68e94
* adding micropython examples * adding micropython examples
35 lines
710 B
Python
35 lines
710 B
Python
#
|
|
# Create a drop down, up, left and right menus
|
|
#
|
|
|
|
opts = "\n".join([
|
|
"Apple\n"
|
|
"Banana\n"
|
|
"Orange\n"
|
|
"Melon\n"
|
|
"Grape\n"
|
|
"Raspberry"])
|
|
|
|
dd = lv.dropdown(lv.scr_act())
|
|
dd.set_options_static(opts)
|
|
dd.align(lv.ALIGN.TOP_MID, 0, 10)
|
|
dd = lv.dropdown(lv.scr_act())
|
|
dd.set_options_static(opts)
|
|
dd.set_dir(lv.DIR.BOTTOM)
|
|
dd.set_symbol(lv.SYMBOL.UP)
|
|
dd.align(lv.ALIGN.BOTTOM_MID, 0, -10)
|
|
|
|
dd = lv.dropdown(lv.scr_act())
|
|
dd.set_options_static(opts)
|
|
dd.set_dir(lv.DIR.RIGHT)
|
|
dd.set_symbol(lv.SYMBOL.RIGHT)
|
|
dd.align(lv.ALIGN.LEFT_MID, 10, 0)
|
|
|
|
dd = lv.dropdown(lv.scr_act())
|
|
dd.set_options_static(opts)
|
|
dd.set_dir(lv.DIR.LEFT)
|
|
dd.set_symbol(lv.SYMBOL.LEFT)
|
|
dd.align(lv.ALIGN.RIGHT_MID, -10, 0)
|
|
|
|
|