SEBWIN-611: Second attempt at fixing resizing issue.
This commit is contained in:
parent
f57771fda9
commit
474d766926
1 changed files with 6 additions and 2 deletions
|
@ -74,14 +74,18 @@ namespace SafeExamBrowser.UserInterface.Desktop.Windows
|
|||
{
|
||||
foreach (var window in windows)
|
||||
{
|
||||
window.Topmost = false;
|
||||
window.WindowState = WindowState.Normal;
|
||||
window.Activate();
|
||||
window.Topmost = true;
|
||||
window.WindowState = WindowState.Maximized;
|
||||
window.Activate();
|
||||
}
|
||||
|
||||
Topmost = false;
|
||||
WindowState = WindowState.Normal;
|
||||
Activate();
|
||||
Topmost = true;
|
||||
WindowState = WindowState.Maximized;
|
||||
Activate();
|
||||
});
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue