SEBWIN-611: Fixed resizing issue with lockscreen.
This commit is contained in:
parent
474d766926
commit
4d67be099a
1 changed files with 17 additions and 1 deletions
|
@ -70,7 +70,23 @@ namespace SafeExamBrowser.UserInterface.Mobile.Windows
|
||||||
|
|
||||||
public void InitializeBounds()
|
public void InitializeBounds()
|
||||||
{
|
{
|
||||||
// TODO
|
Dispatcher.Invoke(() =>
|
||||||
|
{
|
||||||
|
foreach (var window in windows)
|
||||||
|
{
|
||||||
|
window.Topmost = false;
|
||||||
|
window.WindowState = WindowState.Normal;
|
||||||
|
window.Activate();
|
||||||
|
window.Topmost = true;
|
||||||
|
window.WindowState = WindowState.Maximized;
|
||||||
|
}
|
||||||
|
|
||||||
|
Topmost = false;
|
||||||
|
WindowState = WindowState.Normal;
|
||||||
|
Activate();
|
||||||
|
Topmost = true;
|
||||||
|
WindowState = WindowState.Maximized;
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
public new void Show()
|
public new void Show()
|
||||||
|
|
Loading…
Add table
Reference in a new issue