vote up 1 vote down star
2

I am trying to make the corners of a Window (WPF) rounded and it doesn't work, I tried to make the window itself transparent and add an internal border with rounded corners and it doesn't work.

any ideas?

flag

3 Answers

vote up 2 vote down check

you need to set WindowStyle to WindowStyle.None, which will remove the chrome, then you can allow transparency which is an attribute int the Window element, and set the background color to transparent. All of this can be done as attributes to the window tag.

WindowStyle="None"
AllowsTransparency="True"
Background="Transparent"

To make the corners rounded, use a border and set the cornerRadius property

link|flag
vote up 1 vote down

Don't use AllowsTransparency it's slow and buggy, take a look at this link, look for the section "Office 2007 without Aero – Or, you are responsible for everything":

http://blogs.msdn.com/wpfsdk/archive/2008/09/08/custom-window-chrome-in-wpf.aspx

EDIT: some of the techniques in this post are specific to Vista, but the "Office 2007 without Aero" section works on XP (and actually describes what software that is written for Vista has to fall-back to on XP).

link|flag
Indeed. That article has some nice examples. I used the technique in it myself several times. – Tom Deleu Mar 17 at 15:51
My problem is that I need my project to be compatible with XP. – Shimmy Mar 18 at 3:47
Shimmy, the techniques described in this section are compatible with XP – Nir Mar 18 at 8:23
vote up 0 vote down

You also need to make a transparent border around your window that's a few pixels wide, or else the edges of your rounded corners get cut off

link|flag

Your Answer

Get an OpenID
or

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