도전2022
카메라 관련 내용. 본문
LaunchersAndChoosers 예제 셈플에 있는 카메라 부분을 분석하자.
TaskPicturePage.xaml 파일의 내용을 살펴보자.
카메라를 구동하면 작은 불럭이 움직이는 모습이 나타나고, 캡쳐하면
ChoosePhotoPage.xaml로 연동되어서 다음의 함수 부분에서 저장을 하도록 코드를 작성한다.
void photoChooserTask_Completed(object sender, PhotoResult e)
{
Debug.WriteLine("***\t In photoChooserTask_Completed function of ChoosePhotoPage\t ***");
if (e.TaskResult == TaskResult.OK)
{
BitmapImage bitmap = new BitmapImage();
bitmap.SetSource(e.ChosenPhoto);
imgChosenPhoto.Source = bitmap;
}
else if (e.TaskResult == TaskResult.Cancel)
MessageBox.Show("No photo was chosen - operation was cancelled", "Photo not chosen", MessageBoxButton.OK);
else
MessageBox.Show("Error while choosing photo:\n" + e.Error.Message, "Fail", MessageBoxButton.OK);
}
'작업 > 윈도우폰7' 카테고리의 다른 글
How to: Get Data from the Accelerometer Sensor for Windows Phone (0) | 2011.07.06 |
---|---|
Execution Model for Windows Phone (0) | 2011.07.06 |
saverington에 IsoStorePath API가 제거되었다. (0) | 2011.07.06 |
teched 2011 동영상 모음 (0) | 2011.07.05 |
wp7 관련 링크 (0) | 2011.07.05 |