0. 在类型为WPF项目工程文件夹中创建一个名为“Icon”文件夹,并在该文件夹中添加“flow-c0.png”文件,并确保该文件的“Build Action”为“Resource”
1 . 在window中添加一个Rectangle对象(x:Name=“rct”),然后在对应的隐藏文件中,添加以下代码:
ImageBrush imgBrush = new ImageBrush(new BitmapImage(new Uri("/Icon/flow-c0.png", UriKind.Relative)));
rct.Fill = imgBrush;
程序运行之后,会抛出“未能找到路径“W:/Icon/flow-c0.png”的一部分”的异常;
2. 如果上例改为:
Image i