私は次のコードを持っていますが、それは機能していません。誰かがそれを機能させるために私がする必要がある変更を私に提案することができます。
Mainscroll.ManipulationCompleted += new EventHandler<System.Windows.Input.ManipulationCompletedEventArgs>(Mainscroll_completed);
private void Mainscroll_completed(object sender, System.Windows.Input.ManipulationCompletedEventArgs e)
{
UIElement target = sender as UIElement;
target.AddHandler(UIElement.ManipulationCompletedEvent, new EventHandler(layoutroot), true);
// throw new NotImplementedException();
}
private void layoutroot(object sender, EventArgs e)
{
MessageBox.Show("done");
}