Roman Nazarkin
Roman Nazarkin

Reputation: 2229

Position window at bottom-right corner of the screen

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

Answers (1)

lookitskris
lookitskris

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

Related Questions