I am actually an Android developer, I faced the problem of memory exception when I am loading large number of images into a ListBox
.
I have no idea about Windows Phone application development so kindly suggest a better solution to load large number of images into ListBox
from URL in Windows Phone.
Code is below:
public class listboxrows
{
public string text1 { get; set; }
public string imageUri { get; set; }
public string text2 { get; set; }
public string instID { get; set; }
}
<Image Grid.Column="0" Width="90" Height="90" Source="{Binding imageUri}" ></Image>
I want to know if this is a efficient way to load images from url.
If I have huge number of images it will show an memory exception.
Suggest me a better option where I can load any number of images efficiently without any memory exceptions.
Are there any external projects to achieve my goal?