Как достичь верхнего уровня в операционной системе windows10?
I hope my application window show up on top of every other window.On the windows10 operating system. Just like the mouse, it's on the top.
Что я уже пробовал:
while (true) { try { Thread.Sleep(2); lock (_thisLock) { this.Dispatcher.Invoke(new Action(() => { this.Topmost = false; //Thread.Sleep(2); this.Topmost = true; }), null); } } catch (Exception ex) { MessageBox.Show(ex.Message); } }