ArcControl.Arc.Draw C# (CSharp) Méthode

Draw() private méthode

private Draw ( ) : void
Résultat void
        private void Draw()
        {
            Children.Clear();

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

            Children.Add(radialStrip);
        }