Color Change help

I have an image button setup as a mute/unmute button. If the button is muted it changes the foreground color. This works great if I am doing this by pressing the button.

I have a slider setup to control the AVR button.

Heres the problem I observed: If I move the slider, it unmutes the AVR (as it should) but the color of the muted/unmuted button remains as if it is muted.

I do have 2 property triggers for:

Ischecked=True collection setter foreground #bluergb
Ischecked=False collection setter foreground #whitergb

Do you see anything I am doing wrong

What’s setting IsChecked? Have you configured your DataTriggers so that Mute state changes update IsChecked?

I have 2 event triggers
checked binding=denon.mute value=mute
unchecked binding=denon.mute value=unmuted

So I have 2 event tiggers and 2 property triggers

Exactly as I thought. You are missing your DataTriggers. Watch this video. It will help you understand how DataTriggers work & why they are needed.

That fixed it. Thanks