2017-07-15 42 views
1

我有一個List,其中的字符串是圖像的URL。Xamarin Forms XAML - 無法從URL列表中創建多個圖像

我想動態地創建一個圖像的網格與來源是每個網址。

我已經嘗試綁定,但它似乎並沒有工作。我也無法訪問我在Xaml中創建的圖像的名稱。我願意在Xaml或後面的代碼中這樣做。

任何想法如何做到這一點。

回答

2
//imageList is a List<string> with your image urls in it 
foreach(var i in imageList) { 
    Image image = new Image(); 
    image.Source = ImageSource.FromUri(new Uri(i)); 

    // you will need to add logic to calculate the Row/Column for each image 
    myGrid.Children.Add(image,x,y); 
} 
+1

這是完美的!謝謝! –