LV_ROLLER_PART_BG
时间: 2023-12-14 18:04:32 浏览: 97
Roller.part1
LV_ROLLER_PART_BG是指滚轮控件的背景部分。可以使用lv_obj_set_style_local_bg_color函数来设置滚轮控件的背景颜色。例如,以下代码将滚轮控件的背景颜色设置为红色:
```c
lv_obj_set_style_local_bg_color(roller, LV_ROLLER_PART_BG, LV_STATE_DEFAULT, LV_COLOR_RED);
```
阅读全文