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
Set Window owner inside of an UserControl in WPF
6.8k Views Asked by FukYouAll At
2
here Title is the Title of Window which you want to set as owner.