Mega Code Archive

 
Categories / Silverlight / Graphics
 

Clipping image with Geometry Group

<UserControl x:Class='SilverlightApplication3.MainPage'     xmlns='http://schemas.microsoft.com/winfx/2006/xaml/presentation'      xmlns:x='http://schemas.microsoft.com/winfx/2006/xaml'     xmlns:d='http://schemas.microsoft.com/expression/blend/2008'      xmlns:mc='http://schemas.openxmlformats.org/markup-compatibility/2006'      mc:Ignorable='d'      d:DesignWidth='640'      d:DesignHeight='480'>   <UserControl.Resources>     <GeometryGroup x:Key="clipGeometry" FillRule="Nonzero">       <EllipseGeometry RadiusX="75" RadiusY="50" Center="100,150"></EllipseGeometry>       <EllipseGeometry RadiusX="100" RadiusY="25" Center="200,150"></EllipseGeometry>       <EllipseGeometry RadiusX="75" RadiusY="130" Center="140,140"></EllipseGeometry>     </GeometryGroup>   </UserControl.Resources>   <Grid>     <Button Clip="{StaticResource clipGeometry}">A button</Button>     <Image Grid.Column="1" Clip="{StaticResource clipGeometry}"             Stretch="None"  Source="c:\image.jpg"></Image>   </Grid> </UserControl>