将原来的进度条标签进行了更改

This commit is contained in:
muler 2025-04-25 08:25:02 +08:00
parent f768386055
commit 550f288261
7 changed files with 11 additions and 13 deletions

File diff suppressed because one or more lines are too long

View File

@ -11065,7 +11065,7 @@
"flags": 17, "flags": 17,
"strtype": "OBJECT/Position", "strtype": "OBJECT/Position",
"intarray": [ "intarray": [
-5, -7,
41 41
], ],
"InheritedType": 7 "InheritedType": 7
@ -11484,7 +11484,7 @@
"strtype": "OBJECT/Position", "strtype": "OBJECT/Position",
"intarray": [ "intarray": [
102, 102,
40 42
], ],
"InheritedType": 7 "InheritedType": 7
}, },
@ -11566,7 +11566,7 @@
{ {
"nid": 1030, "nid": 1030,
"strtype": "LABEL/Text", "strtype": "LABEL/Text",
"strval": "0%", "strval": "15BPM",
"InheritedType": 10 "InheritedType": 10
}, },
{ {
@ -12357,8 +12357,7 @@
"InheritedType": 11 "InheritedType": 11
} }
], ],
"saved_objtypeKey": "PANEL", "saved_objtypeKey": "PANEL"
"tree_closed": true
}, },
{ {
"guid": "GUID19566368-135395S257804112", "guid": "GUID19566368-135395S257804112",
@ -13808,8 +13807,7 @@
"InheritedType": 11 "InheritedType": 11
} }
], ],
"saved_objtypeKey": "PANEL", "saved_objtypeKey": "PANEL"
"tree_closed": true
}, },
{ {
"guid": "GUID16763883-502735S24514463", "guid": "GUID16763883-502735S24514463",
@ -50558,7 +50556,7 @@
"uiExportFolderPath": "C:\\Users\\jarvis\\Documents\\FluxDC\\SquareLineProj\\Export", "uiExportFolderPath": "C:\\Users\\jarvis\\Documents\\FluxDC\\SquareLineProj\\Export",
"projectExportFolderPath": "C:\\Users\\jarvis\\Documents\\FluxDC\\SquareLineProj\\Export", "projectExportFolderPath": "C:\\Users\\jarvis\\Documents\\FluxDC\\SquareLineProj\\Export",
"custom_variable_prefix": "uic", "custom_variable_prefix": "uic",
"backup_cnt": 1366, "backup_cnt": 1369,
"autosave_cnt": 0, "autosave_cnt": 0,
"group_color_cnt": 0, "group_color_cnt": 0,
"lvgl_version": "8.3.6", "lvgl_version": "8.3.6",

View File

@ -659,7 +659,7 @@ void ui_pageHome_screen_init(void)
ui_pageHome_BarTestProgBS = lv_bar_create(ui_pageHome_panelResult1); ui_pageHome_BarTestProgBS = lv_bar_create(ui_pageHome_panelResult1);
lv_obj_set_width(ui_pageHome_BarTestProgBS, 164); lv_obj_set_width(ui_pageHome_BarTestProgBS, 164);
lv_obj_set_height(ui_pageHome_BarTestProgBS, 10); lv_obj_set_height(ui_pageHome_BarTestProgBS, 10);
lv_obj_set_x(ui_pageHome_BarTestProgBS, -5); lv_obj_set_x(ui_pageHome_BarTestProgBS, -7);
lv_obj_set_y(ui_pageHome_BarTestProgBS, 41); lv_obj_set_y(ui_pageHome_BarTestProgBS, 41);
lv_obj_set_align(ui_pageHome_BarTestProgBS, LV_ALIGN_CENTER); lv_obj_set_align(ui_pageHome_BarTestProgBS, LV_ALIGN_CENTER);
@ -681,9 +681,9 @@ void ui_pageHome_screen_init(void)
lv_obj_set_width(ui_pageHome_labelstr21, LV_SIZE_CONTENT); /// 1 lv_obj_set_width(ui_pageHome_labelstr21, LV_SIZE_CONTENT); /// 1
lv_obj_set_height(ui_pageHome_labelstr21, LV_SIZE_CONTENT); /// 1 lv_obj_set_height(ui_pageHome_labelstr21, LV_SIZE_CONTENT); /// 1
lv_obj_set_x(ui_pageHome_labelstr21, 102); lv_obj_set_x(ui_pageHome_labelstr21, 102);
lv_obj_set_y(ui_pageHome_labelstr21, 40); lv_obj_set_y(ui_pageHome_labelstr21, 42);
lv_obj_set_align(ui_pageHome_labelstr21, LV_ALIGN_CENTER); lv_obj_set_align(ui_pageHome_labelstr21, LV_ALIGN_CENTER);
lv_label_set_text(ui_pageHome_labelstr21, "0%"); lv_label_set_text(ui_pageHome_labelstr21, "15BPM");
lv_obj_set_style_text_font(ui_pageHome_labelstr21, &ui_font_MiSansN14, LV_PART_MAIN | LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui_pageHome_labelstr21, &ui_font_MiSansN14, LV_PART_MAIN | LV_STATE_DEFAULT);
ui_pageHome_labelstr7 = lv_label_create(ui_pageHome_panelResult1); ui_pageHome_labelstr7 = lv_label_create(ui_pageHome_panelResult1);