what is the way to make a Window WPF Topmost true from a Page.xaml? my code is:
MainWindows ui = new MainWindows();
private void TopMostCheckBox_Checked(object sender, RoutedEventArgs e)
{
ui.Topmost = true;
}
this actually dont work, and i dont know how to fix exactly
it should to make the window topmost value true but nothings happen, maybe the Page is the problem?