mirror of
https://github.com/lvgl/lvgl.git
synced 2025-01-14 06:42:58 +08:00
12 lines
386 B
Python
12 lines
386 B
Python
|
def event_handler(obj, event):
|
||
|
if event == lv.EVENT.VALUE_CHANGED:
|
||
|
print("Button: %s" % lv.mbox.get_active_btn_text(obj))
|
||
|
|
||
|
btns = ["Apply", "Close", ""]
|
||
|
|
||
|
mbox1 = lv.mbox(lv.scr_act())
|
||
|
mbox1.set_text("A message box with two buttons.");
|
||
|
mbox1.add_btns(btns)
|
||
|
mbox1.set_width(200)
|
||
|
mbox1.set_event_cb(event_handler)
|
||
|
mbox1.align(None, lv.ALIGN.CENTER, 0, 0) # Align to the corner
|