Windows Mobile 5.0掌上电脑中的相机

时间:2014-06-23 18:26:07

标签: c# exception camera pocketpc

我正在开发C#, Windows mobile app,我需要启动设备camera

这是我的代码:

        CameraCaptureDialog ccd = new CameraCaptureDialog();
        ccd.ShowDialog();//<--- 
        pictureBox1.Image = new Bitmap(ccd.FileName);

ccd.ShowDialog();//<---这一行显示了下一个例外:System.InvalidOperationException: An unknown error occurred.

我不知道异常是因为我的Windows Mobile 5.0 Pocket PC没有内置摄像头。 或者我想要做的事永远不会有效......

所以......任何人都可以告诉我什么?

1 个答案:

答案 0 :(得分:1)

事实上,Windows Mobile 5.0 Pocket PC emulator没有built-in camera,这就是为什么我的所有尝试都不成功 ..

当我built该应用时,installed在我的device上,我运行了应用并且......

惊喜!!!它工作!!

所以...我的结论是:

代码行有效!但只有在我的设备上,他们才能在WMPPC仿真器上工作......

如果有人有不同的答案..让我知道。