I've found a problem with the settings window displayed when using the Settings Service to register a settings command. I imagine the problem may occur with other Callisto windows as well, but I haven't tested it.
I'm registering a settings command, and setting the window width like this:
```
var settings = container.RegisterSettingsService();
dynamic settingsProperties = new ExpandoObject();
settingsProperties.width = 650;
settings.RegisterCommand<SettingsViewModel>("Settings", settingsProperties);
```
As the value for 'width' increases, the window that is created for the "Settings" command will creep away from the right side of the screen. This starts happening somewhere around a width of 650 (as I'm using in the code here), and becomes more pronounces as that value increases. At lower values, the window appears to be fine, and is flush against the right side of the screen as would be expected.
I'm not sure if this is tied to screen resolution, but for reference I'm using 1680 x 1050.
Comments: Not a Caliburn.Micro issue.
I'm registering a settings command, and setting the window width like this:
```
var settings = container.RegisterSettingsService();
dynamic settingsProperties = new ExpandoObject();
settingsProperties.width = 650;
settings.RegisterCommand<SettingsViewModel>("Settings", settingsProperties);
```
As the value for 'width' increases, the window that is created for the "Settings" command will creep away from the right side of the screen. This starts happening somewhere around a width of 650 (as I'm using in the code here), and becomes more pronounces as that value increases. At lower values, the window appears to be fine, and is flush against the right side of the screen as would be expected.
I'm not sure if this is tied to screen resolution, but for reference I'm using 1680 x 1050.
Comments: Not a Caliburn.Micro issue.