- AppWizard V1.52_6.44b
I am trying to change the color of the Button object using user code.
```
void ID_SCREEN_00__ID_BUTTON_00__WM_NOTIFICATION_CLICKED(APPW_ACTION_ITEM * pAction, WM_HWIN hScreen, WM_MESSAGE * pMsg, int * pResult) {
GUI_USE_PARA(pAction);
GUI_USE_PARA(hScreen);
GUI_USE_PARA(pMsg);
GUI_USE_PARA(pResult);
//~~~(2025.01.23)
APPW_PARA_ITEM aPara[6];
aPara[0].v = 0xffaa0000; // RED
APPW_DoJob(ID_SCREEN_00, ID_BUTTON_00, APPW_JOB_SETBKCOLOR, aPara);
//APPW_DoJob(ID_SCREEN_00, ID_BUTTON_00, APPW_SET_PROP_BKCOLORS, aPara);
}
```
The above code does not take effect.
What am I making mistake?
Among several buttons, I would like to change the background color of only 1 button.