Window Style

Hi, 

I`ve created an application and put this piece of code in the main Page of my app.
SkinManager.SetVisualStyle(LayoutRoot, VisualStyle.Metro);

But I have a problem. Every component is working with the Metro style, except the window. When I open a window it starts with the standard style. Here`s how I open the window

            var window = new WindowControl();
            window.ResizeMode = ResizeMode.NoResize;
            window.Width = 400;
            window.Height = 250;
            window.Content = new MyUserControl();
            window.ShowDialog();

How to set the Metro style to the window?
PS: the content inside the window is with Metro style set.

1 Reply

JR Jegan Raj M Syncfusion Team January 31, 2013 03:45 AM UTC

Hi Augusto,

Thanks for your interest in Syncfusion Product.

We have created a sample based on your request which can be downloaded from the below link.

In this above sample, we could open a window with Metro style and we are not able to reproduce the issue.  It would be very helpful to us if you provide more information like modifying this sample or any replication steps so that we could further analyze on this.

Please let us know if you have any queries.

Regards,
Jegan Raj M


Loader.
Up arrow icon