Mini Kabibi Habibi
<UserControl x:Class="ControlsDemo.Moon"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:ControlsDemo">
<Grid x:Name="LayoutRoot">
<Ellipse Width="87" Height="87">
<Ellipse.Fill>
<ImageBrush Stretch="None" AlignmentX="Center" AlignmentY="Center" ImageSource="/ControlsDemo;component/Images/moon.png" />
</Ellipse.Fill>
</Ellipse>
<Path Fill="Black" Opacity="0.63">
<Path.Data>
<PathGeometry FillRule="Nonzero">
<PathFigure x:Name="Figure" IsClosed="True" IsFilled="True">
<ArcSegment x:Name="UpBottomArc" />
<ArcSegment x:Name="BottomUpArc" />
</PathFigure>
</PathGeometry>
</Path.Data>
</Path>
</Grid>
</UserControl>