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?

link|improve this question

0% accept rate
on which line does this exception occur? you could consider hiding the pivot items instead of removing them. This should have similar effect. So set IsVisible, IsEnabled or Visibility to false or Collapsed depending on which is exposed on the Pivot item. – invalidusername Aug 29 '11 at 12:54
The error occurs at the line after myPivotItem_04. I tried also to handle it with IsEnabled or .Visbility, but this is not recognized in 7.0 nor 7.1. Therefore I remove the Items with the code above. – MSicc Aug 29 '11 at 18:52
I tried to figure out what causes the error and found out that the custom Header-Item is the reason. I created the custom Header with following code, any improvements possible? <controls:PivotItem.Header> <Grid Width="460"> <TextBlock Name="Texttolongforstandard" FontSize="46" Text="Texttolongforstandard" FontWeight="Bold" TextWrapping="NoWrap" /> </Grid> </controls:PivotItem.Header> The custom header seems to load longer as the other content on my pivots. – MSicc Aug 30 '11 at 5:56
feedback

1 Answer

Look my post here

Hope it helps

link|improve this answer
Hi, I tried you sample project. It removes the header. But also with your sample I get the error. I clicked on first button, on second button, then appears the error. I tested this a couple of times. I think I will have to leave the header standard. – MSicc Oct 7 '11 at 17:41
Yeah, sorry. There was a stupid bug in sample app. Can check it now please? – Belorus Oct 7 '11 at 18:36
ok, your sample app works now as sugessted. I´m sorry, but it does not work for me as I don´t have a button to click this. My problem is that it has to remove the items on OnNavigatedTo, not on a click event. Even on Page_Loaded it does not work. My app contains 12 Pivot_Items. – MSicc Oct 8 '11 at 15:44
I tried to figure out a way to hide my Pivot Items, but it gets me only an InvalidCastException... – MSicc Oct 9 '11 at 7:34
I tried to move hiding logic from Button_Click event to OnNavigatedTo - and it works for me. Maybe you have a repro project with your bug ? – Belorus Oct 9 '11 at 15:31
show 5 more comments
feedback

Your Answer

 
or
required, but never shown

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