0

I am developing an app that uses DatePicker and LoopSelector at same time. Looking on the tutorials for each of them I have been advised to add assembly references, first one for DatePicker and second one for Loopselector:

xmlns:toolkit="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone.Controls.Toolkit"

xmlns:toolkit="clr-namespace:Microsoft.Phone.ControlsPrimitives;assembly=Microsoft.Phone.Controls.Toolkit"

and then I get error message saying The type 'toolkit:Selector' wasn't found.

I welcome any ideas. Thanks.

i_am_jorf
  • 53,608
  • 15
  • 131
  • 222
Jordan
  • 327
  • 8
  • 23

1 Answers1

0

You cannot have the same name ("toolkit") for both of them!

Igor Ralic
  • 14,975
  • 4
  • 43
  • 51
  • Yes, thanks for that...I changed one of them to toolkitPrimitives and it works perfectly fine...Thanks so much – Jordan Aug 15 '12 at 19:27