Uri 와 BitmapImage 를 써서 Content 에 이미지 넣기..
Uri uri = new Uri ("http://purred.kr/images/center/main.gif");
BitmapImage bitmapImage = new BitmapImage (uri);
Image img = new Image ();
img.Source = bitmapImage;
Content = img;
'C# > WPF' 카테고리의 다른 글
XAML 하위 속성 풀어서 지정하기 (0) | 2012.06.13 |
---|---|
WPF에서 실행파일이 있는 경로 (0) | 2012.04.19 |
다른 스레드가 이 개체를 소유하고 있어 호출한 스레드가 해당 개체에 액세스할 수 없습니다. (0) | 2012.04.18 |
WPF 다국어 지원 (0) | 2012.04.17 |