我在 WP 应用程序附近有动态创建的图像和按钮的列表。每个按钮都显示 CameraCaptureTask,在任务完成时,我想将捕获的图像绑定到位于给定按钮附近的图像。我创建了一种全局指针
Image currentImage;
在按钮显示之前点击任务显示我将它附近的图像分配给该指针
currentImage = createdImage;
在任务完成时,我正在尝试将 Image 分配给该指针
BitmapImage bmp = new BitmapImage();
bmp.SetSource(e.ChosenPhoto);
currentImage.Source = bmp;
但它不起作用。有什么问题?