i want to know how to take photo in windowsmobile through c sharp coding and also i want to save i开发者_开发知识库t to the database. can any one help me for this?
Assuming you're using Windows Mobile 6.5 or earlier, you could use the CameraCaptureDialog class:
CameraCaptureDialog ccd = new CameraCaptureDialog();
ccd.ShowDialog();
Bitmap capturedImage = new Bitmap(ccd.FileName);
精彩评论