How do I display a wpf window in my application when the application resides in a dll, not an exe? This project will be compiled to a dll and loaded into another application as an add-in.
In WinForms, I would just have the following code:
dim frmUserData as frmDataEntry = new frmDataEntry
frmUserData.ShowDialog()
How do I accomplish the same task in WPF?