Click here to Skip to main content
15,918,243 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hello,

My Requirement:
I want to show in grid-List box with Two column.

First column field should be employee photo(image),Name,Age
and second column should be same field.

Suppose there are 30 rows fetch from database. I want show 15-15 records
in both column. How it possible? is there any property or anything else...


HTML



First Column | Second Column
---------------|--------------
Name,Age | Name,Age
Photo img | Photo img
---------------|--------------
Name,Age | Name,Age
Photo img | Photo img
---------------|--------------

Thanks in Advance :)
Br,
Siddhesh
Posted

1 solution

Hi,
I have done myself.

Download below setup & Installed:
1) Silverlight for Windows Phone Toolkit.msi
2) Add Referance: Microsoft.Phone.Controls.Toolkit
3) Add like "Page1.XAML" file in source code
xmlns:toolkit="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone.Controls.Toolkit"
4) Add Inside Listbox control:
XML
<ListBox.ItemsPanel>
                           <ItemsPanelTemplate>
                               <toolkit:WrapPanel Orientation="Horizontal" FlowDirection="LeftToRight"  ItemWidth="210" ItemHeight="110"/>
                           </ItemsPanelTemplate>
                       </ListBox.ItemsPanel>

5)your Image will display like:
1 2
3 4
5 6
7 8

Br,
Siddhesh
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900