image控件的Source设置为相对路径后(Source="haha.png")运行不能显示
解决方案:当Source设置为相对路径后(Source="haha.png")Visual Studio 2013会在属性栏的Source中生成“/WpfApplication1;component/haha.png”。
不知道在其他Visual Studio中会不会这样,但是可以按照这样写就不会出现不能显示的问题。
img.Source = new BitmapImage(new Uri("pack://application:,,,/Images/haha.jpg"));
//或
img.Source = new BitmapImage(new Uri("pack://SiteOfOrigin:,,,/image/haha.jpg"));
时间: 2024-10-23 15:47:14