-
I have a view that renders a non-bindable content based on a viewmodel value. Therefore I need to bind on that value, and the theme. This will allow me to rerender the content when the theme changes. new MultiBinding
{
Binding = [
new Binding(nameof(ViewModel.Value)),
new AppThemeBinding()
]
} However this doesn't compile as ,for reasons unclear to me, the AppThemeBinding is How can I still make a binding that will recalculate the resulting value when the app theme changes? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
I had to build a workaround:
|
Beta Was this translation helpful? Give feedback.
I had to build a workaround:
Themed
to that model to set or override that themed data in that model.