我正在尝试为我在 c# 中为 windows phone 8 创建的类型的特定对象实现拖放。我正在使用这样的操作事件:
deck[r[i, j]].card.ManipulationCompleted += new EventHandler<ManipulationCompletedEventArgs>(ImageManipulationCompleted);
private void ImageManipulationCompleted(object sender, ManipulationCompletedEventArgs e)
{
//something
}
如何将对象更改为我想要的类型?