Using the IWindowManager of Caliburn.Micro, is it possible to create a borderless window using the ShowWindow method?
In this case, the content of the Window is generated from a UserControl. And Caliburn.Micro will create a Window to host the UserControl.
EDIT: The status today:
With the current Caliburn.Micro v1.2 (July 20, 2011) release it’s not possible to set properties on the created window. You can inherit from the
WindowManagerand override theCreateWindowmethod:When the new version released:
Yes it’s possible, with the
settingsparameter:Caliburn.Micro will use this dictionary as
[property name; property value]bag and set them on the created window with reflection.I’ve never created a borderless window but based on this artice something like this should work: