<Frame Source="{Binding Path=ViewModelPropertyUri}" />
Is it possible to databind the Source of a System.Windows.Controls.Frame to a property on my ViewModel? From what I have tried so far I cannot make it work. It doesn’t seem as if the Source property is being updated whenever the ViewModelPropertyUri value changes.
I’m fairly new to WPF and MVVM in general, but I get the overall idea and have the bindings working in various other scenarios.
Thanks!
I see nothing in the documentation on that property to make me think that you wouldn’t be able to bind to that property.
Are you sure the PropertyChanged event is being raised when ViewModelPropertyUri value changes?