Assume we have a UserControl containing a DP to control some aspects in the GUI. (e.g. to change color or size of an element, etc)
Which approach is the best?
- Using DP PropertyChangedCallback
Through this way, we use code-behind to apply our desired changes (e.g. beginning a storyboard, etc) but we can watch all effects due to any change in DP value even at design-time.
- Using DataTrigger
We don't need to use code-behind but we cannot trace changes at design-time. (Can you?)
- None of them! You have another idea!