Is it possible with WPF to create a window that has the shape of a circle and uses a playing movie as the background?
|
|
Don't use AllowsTransparency, it has very poor performance and a lot of compatibility problems, go to this link for alternatives: http://blogs.msdn.com/wpfsdk/archive/2008/09/08/custom-window-chrome-in-wpf.aspx EDIT: there is an example there how to use SetWindowRgn to get rounded corners for a rectangular windows, if you pass an ellipse region instead of a rounded-rect region you will get an elliptic window, it's easy to create a region for any shape you can imagine. |
|||
|
|
|
To make a non-rectangular window, you need to first do three things.
Now, your window is completely transparent. You can use the other tips in this thread to paint a piece of media onto the window's geometry. |
||
|
|
|
|
You should just need to throw something like this in your xaml:
Actually making the window round would be more difficult. Have a look at this if you want the window to be round, it should help figure that part out. HTH |
||
|
|
|
|
you can have a canvas as your parent container (set to transparent) then add a circle with a media brush as it's background. that should do it. :) |
||
|
|
