mirror of
https://github.com/lvgl/lvgl.git
synced 2025-02-04 07:13:00 +08:00
11 lines
307 B
Python
11 lines
307 B
Python
def event_cb(e):
|
|
mbox = e.get_target_obj()
|
|
print("Button %s clicked" % mbox.get_active_btn_text())
|
|
|
|
btns = ["Apply", "Close", ""]
|
|
|
|
mbox1 = lv.msgbox(lv.scr_act(), "Hello", "This is a message box with two buttons.", btns, True)
|
|
mbox1.add_event(event_cb, lv.EVENT.VALUE_CHANGED, None)
|
|
mbox1.center()
|
|
|