views:

41

answers:

1

Hi,

I want to show a video in an ecllipse shape.

How can i do it?

Can i use the Clip property on it? how?

Thanks.

+1  A: 
<MediaElement Source="YourMediaElement">
    <MediaElement.Clip>
        <EllipseGeometry Center="150,150" RadiusX="50" RadiusY="50"/>
    </MediaElement.Clip>
</MediaElement>
Charlie