ArcControl.Arc.Draw C# (CSharp) Method

Draw() private method

private Draw ( ) : void
return void
        private void Draw()
        {
            Children.Clear();

            Path radialStrip = ArcHelper.GetCircleSegment(GetCenterPoint(), Radius, GetAngle());
            radialStrip.Stroke = new SolidColorBrush(Fill);
            radialStrip.StrokeThickness = Thickness;

            Children.Add(radialStrip);
        }