[touchGFX] 와일드 카드 Text 색상 변경

2022년 02월 23일 by 진아사랑해

    [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));

녹색이 출력된다

 

즐거운 시간되세요

 

반응형