我正在尝试使用瓷砖笔刷为我的项目添加漂亮的木质纹理。我已经包含了一个资源文件,添加了资源并从ImageSource下拉列表中选择了图像。图像出现在预览中,但在运行程序时会抛出异常。
这是为填充添加的XAML代码。
<Rectangle.Fill>
<ImageBrush ImageSource="pack://siteoforigin:,,,/Resources/WoodTexture.bmp" TileMode="Tile"/>
</Rectangle.Fill>
引发的异常是这个
A first chance exception of type 'System.Windows.Markup.XamlParseException' occurred in PresentationFramework.dll
Additional information: 'Provide value on 'System.Windows.Baml2006.TypeConverterMarkupExtension' threw an exception.' Line number '24' and line position '22'.
这是否与资源加载方式有关,或者我引用错误了?