Reputation: 2229
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?
Upvotes: 0
Views: 3321
Reputation: 678
In the Window element, set the WindowStartupLocation to equal "Manual" and then set the Height, Width, Left and Top values accordingly.
Upvotes: 2