I am encountering a similar problem to what is described in this SO question. The suggested solution is to create a new WebBrowser Control for each now page (PDF) we wish to present (Overwriting the old WebBrowser control).
What is the correct way of creating a new control like that in MVVM? I trying to keep the VM ignorant about the implementation of the view.
I am encountering a similar problem to what is described in this SO question
Share
Why does the VM need to know? Why can’t the view just hook into an appropriate event (define one if you like, or just use the
PropertyChanged) and recreate the control?