I am currently creating a sidebar-like WPF application in C#. When a user starts the application, I would like the window to automatically position it\'s self to the side of the
public MainWindow() { InitializeComponent(); WindowStartupLocation = WindowStartupLocation.Manual; Left = System.Windows.Forms.SystemInformation.PrimaryMonitorSize.Width - Width; }