I created a Trial Mode with the MSDNs Tutorial.
Within my Trial I decided to switch off some of my pivot items as well as the Buttons to navigate to it.
The Buttons were switched off under both 7.0 and 7.1.
To switch off the pivot Items, I created following code:
{
protected override void OnNavigatedTo(System.Windows.Navigation.NavigationEventArgs e)
{
base.OnNavigatedTo(e);
{
if ((Application.Current as App).IsTrial)
{
myPivot.Items.Remove(myPivotItem_04);
myPivot.Items.Remove(myPivotItem_05);
myPivot.Items.Remove(myPivotItem_06);
myPivot.Items.Remove(myPivotItem_07);
myPivot.Items.Remove(myPivotItem_08);
myPivot.Items.Remove(myPivotItem_09);
myPivot.Items.Remove(myPivotItem_10);
myPivot.Items.Remove(myPivotItem_11);
}
else
{
}
}
}
Debugging with 7.0 works all fine, the app works fine in the emulator. On 7.1 I get an error when navigating to my pivot. Unhandled exception, parameter is incorrect.
System.Exception says "could not evaluate expression".
Anyone has an idea what´s going wrong on 7.1?