im trying to implement a calendar control for my WinRT universal app.
So i looked to this for PC and this for Phone.
So i installed both packages set it in xaml and im getting exactly this error
In that post, the answer (that seems to be from the creator of the control) says that it has been fixed in 1.7.2.0, but it is not, im using 1.7.2.0 and getting the same error.
I have the tried to create the control at code like this:
calendar = new WinRTXamlToolkit.Controls.Calendar();
calendar.SetValue(Grid.RowProperty, 1);
root.Children.Add(calendar);
Exactly same error.
Then i uninstall pc calendar to use only phone version like this:
#if WINDOWS_PHONE_APP
calendar = new WinRTXamlToolkit.Controls.Calendar();
calendar.SetValue(Grid.RowProperty, 1);
root.Children.Add(calendar);
#endif
Exactly same error.
So now im totally lost, this is the exception im getting:
A first chance exception of type 'System.IO.FileNotFoundException' occurred in WinRTXamlToolkit.Controls.Calendar.DLL
How can i solve that error and implement calendar in both PC and Phone versions or, at least, only the Phone version.
Thanks in advance.