WPF 后台使用资源图片
作者:互联网
一般使用:
Img.Image = new BitmapImage(new Uri("/Resources/列表循环_白.png", UriKind.Relative));
找不到时,使用:
Img.ImageSource = new BitmapImage(new Uri("pack://application:,,,/MovieDesktop;component/Resources/列表循环_白.png", UriKind.Absolute));
注意把Resources中的资源图片设置为始终复制-资源;
标签:Img,BitmapImage,Uri,png,后台,new,WPF,Resources,图片 来源: https://www.cnblogs.com/qq2806933146xiaobai/p/15807747.html