I have written this code in blend for Visual Studio for design and for other animation purpose you can do this code in Visual Studio too.

Step 1: Make a Model Class of which you want to bind to a ListView,

For example, In this image I have made a model class of a Student with attributes Name, Class , Rollno and image,

student

Step 2: Make a ListView and add a container (Stack panel) to it and Textblock where you are going to populate your data.

Open the MainPage.xaml editor, you can add ListView by drag and drop from the toolbox or you simply Edit the xaml by adding the following code,

main

Here you can see in this image the textblocks Text Attribute binds with the properties of Student class.

Step 3: Now the final step is to add changes to your xaml.cs file,

final