I have a WPF Window with WindowStyle set to none. Is there some way I can force this window to drop a shadow (like the one you get when WindowStyle is not none)? I don't want to set AllowTransparency to true, because it affects the performance. And I also don't want to disable hardware rendering (I read somewhere that transparency performs better with it disabled).
|
I have written a little utility class that is able to do exactly what you want: drop a standard shadow over a borderless You just have to call the
|
|||||
|
|
Use the Microsoft WPF Shell Integration Library, more easy and with better performance |
|||
|
|
|
If you permit the window to have resize borders, by setting If you have a borderless window without a style you will have to provide all the appearance for the window in your own visual tree, including a drop shadow, since this combination of settings is the same as saying that you don't want what the OS provides. EDIT: From that point, if your window size is fixed, simply add the dropshadow, perhaps as a something like this:
Note that the Note that this violates your requirement to have |
|||||||
|
|
I made this from XAML code. Try this, too:
|
|||
|
|