언어 설정

Menu
Sites
Language
How to set color of a button and how to change font in it

pButton->SetColor(0,Color(90,105,111)) ;

I have done it, but it is showing error

Edited by: Brock Boland on 17 3월, 2014 Reason: Paragraph tags added automatically from tizen_format_fix module.

Responses

1 댓글
Alex Dem
Hi, Please cast first parameter to enum ButtonStatus: pButton->SetColor(ButtonStatus(0),Color(90,105,111)); or use SetColor this way: pButton->SetColor(BUTTON_STATUS_NORMAL,Color(90,105,111)); Alexey.