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.

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

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 WindowManager and override the CreateWindow method:

public class BorderlessWindowManager : WindowManager
{
    protected override Window CreateWindow(object rootModel, bool isDialog, 
       object context)
    {
        var window = base.CreateWindow(rootModel, isDialog, context);
        window.WindowStyle = WindowStyle.None;
        window.ShowInTaskbar = false;
        window.AllowsTransparency = true;
        window.Background = new SolidColorBrush(Colors.Transparent);
        return window;
    }
}

When the new version released:

Yes it's possible, with the settings parameter:

public interface IWindowManager
{
    //...
    void ShowWindow(object rootModel, object context = null, 
         IDictionary<string, object> settings = null);
}

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:

windowManger.ShowWindow(viewModel, 
    settings: new Dictionary<string, object>
    {
        { "WindowStyle", WindowStyle.None},
        { "ShowInTaskbar", false},
        { "AllowsTransparency", true},
        { "Background", new SolidColorBrush(Colors.Transparent)},
    });
link|improve this answer
We are using the latest release v1.2 (July 20, 2011). It appears the settings parameter is in a newer, unreleased version. We could download the source and use the latest release, but we would like to only use the officially released version. – Metro Smurf Jan 13 at 18:21
Oh.. sorry I've checked it directly in the source on CodePlex. I didn't know that it isn't released yet. I will update my answer. – nemesv Jan 13 at 18:26
I'm going to look into the latest WindowManger class for Caliburn Micro and see if there are any other new dependencies. If not, we'll probably just grab the source and implement that until the new version. But, will wait to see if you come up with an option for the v1.2 release first. – Metro Smurf Jan 13 at 18:29
Thanks for doing all the hard-work! – Metro Smurf Jan 13 at 20:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.