- [touchGFX] 와일드 카드 Text 색상 변경 목차
반응형
글자를 출력하면서 필요에 따라 글자 색을 변경해야 하는 경우가 발생한다
이럴 경우에는
setColor(color)을 사용한다
사용 예를 보면
Unicode::snprintf(textAreaErrorCodeBuffer, TEXTAREAERRORCODE_SIZE, "%02d", ecode);
textAreaErrorCode.setColor(Color::getColorFrom24BitRGB(0xFF, 0x00, 0x00));
textAreaErrorCode.invalidate();
textAreaErrorCode에 text를 출력하는 경우에
빨간색(RED)로 출력된다
textAreaErrorCode.setColor(Color::getColorFrom24BitRGB(0x00, 0xFF, 0x00));
녹색이 출력된다
즐거운 시간되세요
반응형
'STM32' 카테고리의 다른 글
[touchGFX]touchGFX 열기(open)할 때 경고(warning) (0) | 2022.03.03 |
---|---|
PWM 사용하여 Buzzer 동작시키기 (0) | 2022.02.25 |
[touchGFX]버튼 클릭시 작업을 수행하고 화면 전환(change screen) (0) | 2022.02.18 |
[touchGFX]View에서 변경된 값을 Model로 전달 순서 (0) | 2022.02.09 |
[touchGFX]Slider 화면 생성(창 생성)할 때 초기값 넣는 방법 (0) | 2022.02.08 |