반응형
// 탭 했을때 화면에 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);
}
반응형
'WINDOWS PHONE' 카테고리의 다른 글
Windows Phone용 Silverlight 응용프로그램의 시험판 환경 구현 링크 (0) | 2012.10.17 |
---|---|
웹에 있는 이미지 출력하기 예제 WebClient 이용. (0) | 2012.10.11 |
DispatcherTimer 예제 (0) | 2012.10.08 |
시스템 트레이에 프로그래스바 나타내기. (0) | 2012.10.04 |
그달의 마지막날 구하기. (0) | 2012.09.14 |