0

ボタンを作成し、散布図をクリアする動作を書きましたが、うまくいきませんでした:

private void Button1_Click(object sender, RoutedEventArgs e)
        {
            DependencyObject parent = VisualTreeHelper.GetParent(this);
            ScatterViewItem svi = null;
            while (parent as ScatterView == null)
            {
                if (parent is ScatterViewItem)
                    svi = parent as ScatterViewItem;
                parent = VisualTreeHelper.GetParent(parent);
            }

            ((ScatterView)parent).Items.Remove(svi);              
        }

この前に、このコードでアプリケーションをリセットすることを考えましたが、どちらも機能しませんでした: (System.Diagnostics を使用して追加しました; )

private void Button1_Click(object sender, RoutedEventArgs e)
    {    
       Process.Start(Application.ResourceAssembly.Location);    
       Application.Current.Shutdown();                      
    }

xaml:

<s:SurfaceButton  Content="Clear" Name="Button1" Click="Button1_Click" VerticalAlignment="Bottom" HorizontalAlignment="Center"/>

私が見逃していることを教えてもらえますか、ありがとう

4

1 に答える 1

0

ScatterView名前を付けるだけです

<s:ScatterView x:Name="scatterView" ... />

次に、コードビハインドからアクセスします。

private void Button1_Click(object sender, RoutedEventArgs e)
{
    scatterView.Items.Clear();
}
于 2013-02-11T10:33:07.473 に答える