Procedura: ritagliare un disegno
Aggiornamento: novembre 2007
In questo esempio viene illustrato come definire un'area di ridimensionamento per un oggetto Drawing.
Utilizzare DrawingGroup per definire un clip per un oggetto Drawing. La classe DrawingGroup è l'unico tipo di oggetto Drawing che consente di definire un'area di ridimensionamento personalizzata.
Utilizzare un oggetto Geometry per descrivere il clip e applicarlo alla proprietà ClipGeometry dell'oggetto DrawingGroup.
Esempio
Nell'illustrazione viene illustrato l'oggetto DrawingGroup prima e dopo l'applicazione del clip ellittico.
Nell'esempio riportato di seguito viene utilizzato un oggetto DrawingGroup per applicare una proprietà ClipGeometry a vari oggetti GeometryDrawing.
<Page
xmlns="https://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="https://schemas.microsoft.com/winfx/2006/xaml"
xmlns:PresentationOptions="https://schemas.microsoft.com/winfx/2006/xaml/presentation/options"
xmlns:mc="https://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="PresentationOptions"
Background="White" Margin="20">
<Border BorderBrush="Gray" BorderThickness="1"
HorizontalAlignment="Left" VerticalAlignment="Top"
Margin="20">
<Image Stretch="None" HorizontalAlignment="Left">
<Image.Source>
<DrawingImage PresentationOptions:Freeze="True">
<DrawingImage.Drawing>
<!-- A DrawingGeometry with an elliptical clip region. -->
<DrawingGroup>
<GeometryDrawing Brush="Pink">
<GeometryDrawing.Geometry>
<RectangleGeometry Rect="0,0,50,85" />
</GeometryDrawing.Geometry>
</GeometryDrawing>
<GeometryDrawing Brush="Lime"
Geometry="M 25,25 L 0,50 25,75 50,50 25,25 25,0">
<GeometryDrawing.Pen>
<Pen Thickness="10" Brush="Black" />
</GeometryDrawing.Pen>
</GeometryDrawing>
<GeometryDrawing Brush="Lime">
<GeometryDrawing.Geometry>
<EllipseGeometry Center="10,10" RadiusX="5" RadiusY="5" />
</GeometryDrawing.Geometry>
<GeometryDrawing.Pen>
<Pen Thickness="2" Brush="Black" />
</GeometryDrawing.Pen>
</GeometryDrawing>
<DrawingGroup.ClipGeometry>
<EllipseGeometry Center="25,50" RadiusX="25" RadiusY="50" />
</DrawingGroup.ClipGeometry>
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
</Border>
</Page>
Vedere anche
Concetti
Cenni preliminari sugli oggetti Drawing
Cenni preliminari sulle classi Geometry