2017-06-17 61 views
0

我在Visual Studio 2017中使用Xamarin格式的<Image Source="flower.png" />代碼在Tizen Mobile中顯示圖像,但它不顯示。我將圖像文件放在Tizen項目的共享\ res文件夾中。Tizen Mobile中的圖像不可見

回答

0

將圖像複製到'.TizenMobile'項目'res'目錄(不在'shared'res'res'res'(root))。然後在Solution Explorer中:右鍵單擊在 '資源' 文件夾,並添加>現有項> PNG圖片

在你ProjectCode(便攜式)C#文件:

MainPage = new ContentPage 
     { 
      Content = new StackLayout 
      { 
       VerticalOptions = LayoutOptions.Center, 
       Children = { 
         new Image { 
          Aspect = Aspect.AspectFit, 
          Source = ImageSource.FromFile("flower.png") 
         } 
       } 
      } 
     }; 

或者你甚至可以嘗試XAML。

enter image description here

+0

它不會工作任何方式。只是當圖像源是URL.It的作品。 – Fattaneh

+0

現在,在我的機器上工作。編輯答案,看看。 –

+0

現在,它開始了。感謝您跟進我的問題。 – Fattaneh