Imagebrush ResourceDictionary

时间:2013-09-27 09:49:37

标签: xaml windows-phone-8 resourcedictionary hresult imagebrush

我创建了一个Resourcedictionary,我将我的ImageBrush定义为jpg图片。我在Path对象上使用此ImageBrush来填充它。但是当我构建时,我得到错误错误: 错误HRESULT E_FAIL已从调用COM组件返回。

<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
                xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
                xmlns:c="clr-namespace:System;assembly=mscorlib"
                xmlns:Model="clr-namespace:MVVMTestApp.Model;assembly=MVVMTestApp.Model"
                xmlns:View="clr-namespace:MVVMTestApp.View"
                xmlns:ViewModel="clr-namespace:MVVMTestApp.ViewModel">

<c:Double x:Key ="StrokeUserControl">
2
</c:Double>

<ImageBrush x:Key="CountryBackground" ImageSource="../Assets/gra-bakgrund.jpg" Stretch="Fill"/>

我正试图让它填写像我这样的Path对象

Fill="{StaticResource CountryBackground}"

0 个答案:

没有答案