Windows Phone 8 用に c# で作成した Type の特定のオブジェクトにドラッグ アンド ドロップを実装しようとしています。次のような操作イベントを使用しています。
deck[r[i, j]].card.ManipulationCompleted += new EventHandler<ManipulationCompletedEventArgs>(ImageManipulationCompleted);
private void ImageManipulationCompleted(object sender, ManipulationCompletedEventArgs e)
{
//something
}
オブジェクトを必要なタイプに変更するにはどうすればよいですか?