在文件wgui_draw_manager.c当中有这样一个函数, 该函数能改变main menu and sub menu background, that is: UI_filled_area* dm_get_current_scr_bg_filler(void);
by the way, this function just return the current screen\'s background. If you want to change it, finally, you should modify this file: themecomponents.h, in this file, you can find the definition:
CONST_HARDWARE UI_filled_area main_menu_background_filler_defaultTheme={
UI_FILLED_AREA_TYPE_COLOR,
UI_IMAGE_ID_NULL,
NULL,
{206,206,206,100},
{0,0,0,100},
{0,0,0,100},
{0,0,0,100},
0};
here, the main menu background is just a color filling, you can use image as background instead. |