Mini Kabibi Habibi

Current Path : C:/Users/Public/Documents/DXperience 13.1 Demos/WPF/VB/ControlsDemo.Wpf/Modules/
Upload File :
Current File : C:/Users/Public/Documents/DXperience 13.1 Demos/WPF/VB/ControlsDemo.Wpf/Modules/Moon.xaml

<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>