1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
| ui_MenuPage_bottom = lv_obj_create(NULL); lv_obj_set_width(ui_MenuPage_bottom, 240); lv_obj_set_height(ui_MenuPage_bottom,280);
bg_image = lv_img_create(ui_MenuPage_bottom); lv_img_set_src(bg_image,&bg_2); lv_obj_set_style_bg_opa(bg_image, LV_OPA_70, 0);
ui_MenuPage_top = lv_obj_create(ui_MenuPage_bottom); lv_obj_set_align(ui_MenuPage_top, LV_ALIGN_TOP_MID); lv_obj_add_flag(ui_MenuPage_top, LV_OBJ_FLAG_SCROLLABLE); lv_obj_set_scroll_dir(ui_MenuPage_top, LV_DIR_VER); lv_obj_set_style_bg_opa(ui_MenuPage_top, 0, 0); lv_obj_set_width(ui_MenuPage_top, 240); lv_obj_set_height(ui_MenuPage_top, 280);
|