I have UI application extensions in separate DLL files that I connect with through MEF. My question is, if they have a dialog (a WPF user control), should I make the dialog an extension property as follows:
public UserControl ExtDialog { get; set; }
or should i load them in uri package?
public string ExtDialogUri { get; set; }
I am leaning towards the uri package, but not sure if this will really work. How is this a more βrecommendedβ way to do this?
NOTE. These dialogs will be navigated using NavigationService.Navigate (); Method.
source share