3
votes

I want rounded window corners (more specifically, only on the top two),
however my window background is semitransparent blurred of whatever is behind it, and I'm trying to use the usual method of having a round corner border, which works, but the window, even though transparent, still gives off a blur effect.

Here's what's happening (showing one corner) enter image description here

1

1 Answers

0
votes

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