How to access Phone gallery and camera in windows phone7 through code
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
there are Launchers and Choosers which allow you to call these options and they also allow you to call other things such as map,sms compose,search etc.
here is an example of one (camera)
CameraCaptureTask cvt = new CameraCaptureTask();cvt.Completed += new EventHandler<PhotoResult>(cv_Completed);cvt.Show();private void cv_Completed(object sender, PhotoResult r){//Your Code Here}
also read here – MSDN- Launchers and Choosers