需要设置默认资产或图片文件夹

时间:2015-09-23 08:53:33

标签: wpf xaml windows-phone-8 xamarin windows-phone-8.1

是否有任何解决方案为Windows Phone设置图像源的默认路径?一些明显的变化?

我想写<Image Source="img1.png" />而不是<Image Source="Assets/Images/img1.png" />

实际上,此功能对于xamarin开发人员非常有用。现在我需要在xamarin studio中创建如此庞大的代码:

<Image>
        <Image.Source>
                        <OnPlatform x:TypeArguments="ImageSource">
                          <OnPlatform.iOS>
                            <FileImageSource File="img1.png"/>
                          </OnPlatform.iOS>
                          <OnPlatform.Android>
                            <FileImageSource File="img1.png"/>
                          </OnPlatform.Android>
                          <OnPlatform.WinPhone>
                            <FileImageSource File="Assets/Images/img1.png"/>
                          </OnPlatform.WinPhone>
                        </OnPlatform>
                      </Image.Source>
        </Image>

我的目标是将此代码转换为<Image Source="img1.png"/>

1 个答案:

答案 0 :(得分:0)

Windows Phone是不可能的。如果你想使用

 <Image Source="img1.png"/> 

图像必须位于项目的根部。