반응형

// 탭 했을때 화면에 img 에 출력함.

protected override void OnManipulationStarted(ManipulationStartedEventArgs e)

{

     Uri uri = new Uri("http://www.charlespetzold.com/Media/HelloWP7.jpg");

     BitmapImage bmp = new BitmapImage(uri);

     img.Source = bmp;


     e.Complete();

     e.Handled = true;


      base.OnManipulationStarted(e);

}

반응형
Posted by 컴스터
,