I have an xml file which I am reading into an IEnumerable using linq, now rather than listing every entry using a listbox on one page, id like to show one record on a page.

I've found a blog article on the subject

http://indyfromoz.wordpress.com/2010/08/30/windows-phone-7-listbox-pagination-with-mvvmlight-applicationbar/

But it is using MVVM, how do I go about just loading one record into a form and making it cycle through to records.

link|improve this question

if you are showing just one record on the page, how do you want the users to navigate from one record to the next? – ColinE Jul 19 '11 at 10:16
with the application bar. should i follow the guide and use mvvm? would you recommend it? – Joseph Le Brech Jul 19 '11 at 10:21
1  
why don't you want to use MVVM? i would recommend that – valipour Jul 19 '11 at 10:24
thanks i think that's where i'm heading to. – Joseph Le Brech Jul 19 '11 at 10:43
feedback

1 Answer

up vote 1 down vote accepted

If you don't want to use MVVM then you can name your controls and then refer to them by that name in the code behind.

xaml:

<TextBlock x:Name="myTextblock" />

cs:

this.myTextblock.Text = myEnumerable.Property;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.