I have a C# WPF application, and I need to display its window at the bottom-right corner of screen. How can I do that?
Asked
Active
Viewed 3,079 times
0
-
1Did you tried _anything_? – Soner Gönül Apr 28 '13 at 14:41
-
I have found two parameter in MSDN - `Top` and `Left`, but it dont works for me – Roman Nazarkin Apr 28 '13 at 14:43
1 Answers
2
In the Window element, set the WindowStartupLocation to equal "Manual" and then set the Height, Width, Left and Top values accordingly.

lookitskris
- 678
- 1
- 6
- 23
-
That i know. But how i can set position to bottom-right through `Top` and `Left` attributes? – Roman Nazarkin Apr 28 '13 at 14:47
-
have you tried this? http://stackoverflow.com/questions/7620488/how-to-set-the-location-of-wpf-window-to-the-bottom-right-corner-of-desktop – lookitskris Apr 28 '13 at 14:52