How can i make the window and the messagebox be opened at the top of the screen but not to keep this state? Topmost property doesn't work here, because it makes the window to be always at the top, and i need it only to be opened at the top. The problem is that when the topmost = false, our windows and messageboxes are opened not at the top of the screen sometimes, which can make users uncomfortable. Any ideas?
0
votes
3 Answers
3
votes
Are you looking for Window.Activate
? This is the preferred mechanism for bringing your window to the attention of the user.
Be aware that it comes with restrictions.
0
votes