i made a simple long list selector app without jump header or header template. i made it after a long journey in to the google and stack overflow. i was satisfied with it. the app contains only text blocks to show names- like first name last name phone number but i need to add photos also what would be the code how to show pictures along with names. i search a lot couldn't get a proper solution here is my code:
namespace listparee6
{
public partial class MainPage : PhoneApplicationPage
{
// Constructor
public MainPage()
{
InitializeComponent();
// Sample code to localize the ApplicationBar
//BuildLocalizedApplicationBar();
List<SpeedDial> speeddial = new List<SpeedDial>();
speeddial.Add(new SpeedDial ( "deepu", "43" ));
speeddial.Add(new SpeedDial ( "anoop","32" ));
speeddial.Add(new SpeedDial ( "abhilash","76" ));
SpeedDialLLS.ItemsSource = speeddial;
}
public class SpeedDial
{
public string Name { get; set;}
public String Phone { get; set; }
public SpeedDial(string peru, string num)
{this.Phone=num ;
this.Name = peru;
}
}
}
}
Here is demo XAML
You need to add contact image in your class
Hope this helps.