ArcControl.Arc.Draw C# (CSharp) 메소드

Draw() 개인적인 메소드

private Draw ( ) : void
리턴 void
        private void Draw()
        {
            Children.Clear();

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

            Children.Add(radialStrip);
        }