c# - How to add effect inside ItemContainerStyle -
i have effect use this:
<image.effect> <effects:huebrightnesscontrastsaturationeffect hue="{binding hue}"/> </image.effect>
now need apply effect inside itemcontainerstyle
section. im trying add effect
property
"effect" not recognized or not accessible.
something should work fine :
<foo.itemcontainerstyle> <style targettype="image"> <setter property="effect"> <setter.value> <effects:huebrightnesscontrastsaturationeffect hue="{binding hue}"/> </setter.value> </setter> </style> </foo.itemcontainerstyle>
Comments
Post a Comment