コード例 #1
0
        private void NotifyUpdate()
        {
            PieChart pieChart = FindParent();

            if (pieChart != null)
            {
                pieChart.Update();
            }
        }
コード例 #2
0
        private static void OnThicknessChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
        {
            PieChart pieChart = (PieChart)d;

            pieChart.Update();
        }
コード例 #3
0
        private static void OnLabelOffsetChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
        {
            PieChart chart = (PieChart)d;

            chart.Update();
        }