WPF学习

添加图片资源

  1. 双击Resources.resx
  2. 选择图像=》添加现有文件,选择要添加的外部图片
    image.png
  3. 在解决方案里面找到Resources,选择刚才导入的图片,右键属性,选择 Resources
    image.png

代码使用

 

 imageCtrl.ImageSource = new BitmapImage(new Uri(
"pack://application:,,,/Wpf;component/Resources/land.jpg", 
UriKind.Absolute));

其中Wpf 为解决的名字

你可能感兴趣的:(WPF学习)