按理说,windows mobile上使用.net cf 有现成的类可用,几行代码搞定:

CameraCaptureDialog cameraCaptureDialog = new CameraCaptureDialog();
if (cameraCaptureDialog.ShowDialog() == DialogResult.OK)
{
   Image image 
= new Bitmap(cameraCaptureDialog.FileName);
   
this.pictureBox1.Image = image;
}

相关文章:

  • 2019-03-24
  • 2021-10-14
  • 2022-12-23
  • 2021-05-05
  • 2021-09-20
  • 2021-07-19
  • 2022-12-23
  • 2021-07-14
猜你喜欢
  • 2021-12-09
  • 2022-12-23
  • 2022-12-23
  • 2021-10-11
  • 2022-01-09
  • 2022-03-01
  • 2021-12-16
相关资源
相似解决方案