JordanMarr / ReactiveElmish.Avalonia

Static Avalonia views for Elmish programs
Other
92 stars 8 forks source link

GetViewFor in CompositionRoot #53

Closed kgday closed 7 months ago

kgday commented 7 months ago

This pull request adds 2 methods in CompositionRoot: HasViewFor(vm) GetViewFor(vm)

This allows us to retrieve a view for an instance of a view model as opposed to using the existing GetView which creates both the view model and the view. I believe there is a place for both.

For example having GetViewFor with a static variable for the AppCompositionRoot, we can modify the ViewLocator to use the composition root to get us a registered view for the given viewmodel rather than use reflection.