I have an outlook plugin which pops up a WPF window
Is there a way to set the WPF\'s Window.Owner property to Outlook?
Window.Owner
This can be done via WindowInteropHelper:
WindowInteropHelper wih = new WindowInteropHelper(yourWindow); wih.Owner = outlookHwnd; yourWindow.Show();