Is it possible that the DocumentSource Binding is broken?
First time the binding works, but whenever the binded value changes, nothing happens with the EditControl.
Now I have to break my MVVM pattern to update the DocumentSource (or use LoadFile) from my ViewModel through code.
(+ I'm absolutely sure that the binded value works)
I'm using MVVMlight btw.
[DocumentSource="{Binding CurrentFileName, Converter={StaticResource SafeFileConverter}, ConverterParameter=Default.asm}"]
> After CurrentFileName changes, nothing happens (ValueConverter isn't called, DocumentSourceChanged event isn't called) [Only the first time these are called]
Am I missing something?