我使用API为通过回调返回图像的相机,如下所示:
camera.StartCapture(ImageEvent);
protected void ImageEvent(ManagedImage image)
{
// do something with the image
}
问题是ImageEvent
一直被调用,不让其他方法正常运行。所以我想在另一个帖子中运行ImageEvent
,我该怎么做?
使用async / await的解决方案更可取。
答案 0 :(得分:1)
Nothing