<Canvas xmlns="http://schemas.microsoft.com/client/2007" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"> <Rectangle Opacity="1" Canvas.Left="5" Fill="Blue" Canvas.Top="5" Height="50" Width="150" Stroke="Red" StrokeThickness="3" /> <Rectangle Opacity="0.5" Canvas.Left="5" Fill="Yellow" Canvas.Top="30" Height="50" Width="150" Stroke="Red" StrokeThickness="3" /> </Canvas>
<Canvas xmlns="http://schemas.microsoft.com/client/2007" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"> <Rectangle Opacity="1" Canvas.Left="5" Fill="Blue" Canvas.Top="5" Height="150" Width="150" Stroke="Yellow" StrokeThickness="5"> <Rectangle.OpacityMask> <LinearGradientBrush> <GradientStop Color="#00000000" Offset="0.25"/> <GradientStop Color="#ff000008" Offset="1"/> </LinearGradientBrush> </Rectangle.OpacityMask> </Rectangle> </Canvas>
<Canvas xmlns="http://schemas.microsoft.com/client/2007" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"> <Rectangle Canvas.Left="5" Fill="Red" Canvas.Top="5" Height="250" Width="250" Stroke="Blue" StrokeThickness="2"> <Rectangle.Clip> <EllipseGeometry Center="50, 50" RadiusX="50" RadiusY="100" /> </Rectangle.Clip> </Rectangle> </Canvas>
<Canvas xmlns="http://schemas.microsoft.com/client/2007" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"> <Rectangle Canvas.Left="35" Fill="Red" Canvas.Top="5" Height="50" Width="50" Stroke="Blue" StrokeThickness="2"> <Rectangle.RenderTransform> <RotateTransform Angle="35"/> </Rectangle.RenderTransform> </Rectangle> <Rectangle Canvas.Left="105" Fill="Yellow" Canvas.Top="5" Height="60" Width="60" Stroke="Blue" StrokeThickness="2"> <Rectangle.RenderTransform> <ScaleTransform ScaleX="1" ScaleY=".5"/> </Rectangle.RenderTransform> </Rectangle> <Rectangle Canvas.Left="50" Fill="Orange" Canvas.Top="100" Height="50" Width="50" Stroke="Blue" StrokeThickness="2"> <Rectangle.RenderTransform> <SkewTransform AngleX="45"/> </Rectangle.RenderTransform> </Rectangle> </Canvas>