添加图片资源
- 双击Resources.resx
- 选择图像=》添加现有文件,选择要添加的外部图片
- 在解决方案里面找到Resources,选择刚才导入的图片,右键属性,选择 Resources
代码使用
<ImageBrush
ImageSource="/Wpf;component/Resources/test.png"
x:Name="imageCtrl" Viewport="0,0,0.3,0.3" TileMode="Tile">
</ImageBrush>
imageCtrl.ImageSource = new BitmapImage(new Uri(
"pack://application:,,,/Wpf;component/Resources/land.jpg",
UriKind.Absolute));
其中Wpf 为解决的名字