c# - ListPicker FullModeItemTemplate Issue -


my list picker contains lot of items.so used fullmodeitemtemplate:

<toolkit:listpicker.fullmodeitemtemplate>     <datatemplate>           <textblock margin="10,0,0,14"                    fontsize="30"                    foreground="white"                    text="{binding localizefamilylabel}" />     </datatemplate> </toolkit:listpicker.fullmodeitemtemplate> 

the problem when navigating , again. can open it, navigate view.when navigate back, corrupted, items rearranged contains spaces.

what must find arranged when navigating again list?

regards,

did put set items source code in onnavigatedto event?

protected override void onnavigatedto(navigationeventargs e) {     listpicker.itemssource = // source } 

if this, page reset listpicker items, items rearranged. wish can you.


Comments

Popular posts from this blog

c++11 - Intel compiler and "cannot have an in-class initializer" when using constexpr -

java - WrongTypeOfReturnValue exception thrown when unit testing using mockito -

c# - Sort XmlNodeList with a specific Node value -