In silverlight out of browser, after login from the silverlight login page, I would like to adjust the position of it. I have tried my luck setting Application.Current.MainWindow.Left and Application.Current.MainWindow.Top but unfortunately it is ignored.
According to MSDN:
You can set this property at run time only if WindowStartupLocation is set to Manual. Additionally, you can set this property at run time only before the end of the Application.Startup event, after which any changes are ignored. For example, you can save the current value to isolated storage in an Application.Exit event handler, and restore the value in an Application.Startup event handler.
I have to adjust the position during runtime but not before application startup. What to do now?