0
我有WPF項目,項目內有一個文件夾調用Images
,它包含一些png和gif文件。其中的所有文件是Build Action= Resources
和複製到Output Directory = Do not copy
。WPF圖像相對位置
我使用下面的代碼將其綁定到圖像:
ImageSource ImageStatus = new BitmapImage(new Uri("/MPAL;component/Images/usbreader0001.png", UriKind.Relative));
MPAL
是我的項目名稱和默認組件。
我有一個問題,圖像編譯到哪裏?因爲我能夠運行它,避免出現問題。
我說這是正確的方法嗎?
謝謝。