2015-09-23 76 views
0

是否有任何解決方案爲Windows Phone的圖像源設置默認路徑?一些明顯的變化?需要設置默認資產或圖像文件夾

我想寫的<Image Source="img1.png" />代替<Image Source="Assets/Images/img1.png" />

其實這個功能將是xamarin開發人員非常有用。現在我需要在xamarin工作室創建的代碼如此巨大的一塊:

<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"/>

回答

0

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

<Image Source="img1.png"/> 

這是必要的圖像是在項目的根源。