i want add contact list in windows phone 8 project.i did using long list selector not worked on phone panorama.i want contact list on phone panorama.
try code ... longlist selector works fine on panaroma ...
just change list binded own list , make datatemplate according ypour wish work fine ...
<phone:panoramaitem header="first item"> <!--single line list text wrapping--> <phone:longlistselector margin="0,0,-22,0" itemssource="{binding items}"> <phone:longlistselector.itemtemplate> <datatemplate> <stackpanel margin="0,-6,0,12"> <textblock text="{binding lineone}" textwrapping="wrap" style="{staticresource phonetextextralargestyle}" fontsize="{staticresource phonefontsizeextralarge}"/> </stackpanel> </datatemplate> </phone:longlistselector.itemtemplate> </phone:longlistselector> </phone:panoramaitem>
Comments
Post a Comment