Set Window owner inside of an UserControl in WPF

6.8k Views Asked by At

I have an UserControl that shows a window without an icon in the Taskbar, the problem is when the main window lost the focus and get it again the window without taskbar icon is behind the main window and is difficult show it in front again, this issue is solved using window.Owner = this; when the class is a window, but when is UserControl or other type (e.g. ListBoxItem, Viewbox) I can't do this. I tried to do this control.Owner = (Window)this; but the result throws an exception that a Grid cannot be converted into a Window

2

There are 2 best solutions below

1
On
 for (int  index=0;index< App.Current.Windows.Count;index++ )
        {
            if (App.Current.Windows[index].Title == "MyWindow")
                control.Owner = App.Current.Windows[index];
        } 

here Title is the Title of Window which you want to set as owner.

0
On

use

window.Owner = Window.GetWindow(this);