Is there an easy way to make a number picker for windows phone 7 that is similar to the timepicker control? I want go have custom ranges of 0-99 : 0-59 . 0-9. Google, bing, and msdn seem to be very vague with information on the subject.

I found an article that describes exactly what I want to do here. Now my problem is that the article is old and if I type toolkit: in my XAML code, no suggestion comes up for a loopingselector. If I go into my toolbox, right click, choose items. There are no controls for a loopingselector or infinite list selector.

The source code also doesn't work. It gives a bunch of errors in the XAML file that I am unable to remedy.

I am kind of at a loss on what to do here.

I am using Visual Studio 2010 / c#4.0.

Thanks in advance

link|improve this question

25% accept rate
1  
Something like this? blog.ningzhang.org/2008/11/… – Henk Holterman Aug 26 '11 at 21:07
Not really. That is for windows forms and I am trying to do it for windows phone. I want to do something like this: windowsphonegeek.com/articles/… – Chris Aug 26 '11 at 21:17
It's all SilverLight. – Henk Holterman Aug 28 '11 at 19:51
feedback

1 Answer

Make sure that you are using the right namespace. LoopingSelector is in Microsoft.Phone.Controls.Primitives namespace. So your xmlns should be something like:

xmlns:toolkit="clr-namespace:Microsoft.Phone.Controls.Primitives;assembly=Microsoft.Phone.Controls.Toolkit"
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.