I have a MainWindow.XAML
and CustomersView.XAML
.
When I click the Customer Button on MainWindow , I want to navigate to CustomersView.XAML
and palong with that need to pass few parameters.
I can use NavigationService
but is only available with Pages and not Window.Hyperlink is not an option at this moment.
This might be fairly simple thing but not sure how can I implement this using MVVM and with out any third party control.
Best Solution