WPF에서 리소스 사용 방법
WPF에서 resource에 포함된 이미지를 xaml이 아닌 코드에서 참조하는 방법을 알아 보도록 하겠다.
Image image = new Image(); image.Source = new BitmapImage( new Uri("pack://application:,,,/Memo.Core;component/Images/icon.png", UriKind.RelativeOrAbsolute)); colorMenuItem.Icon = image;
[코드1] 리소스에서 이미지 가져오기
[그림1] build action