This is a migrated thread and some comments may be shown as answers.

JumpList ObjectDisposedException

1 Answer 58 Views
JumpList
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Alexander
Top achievements
Rank 1
Alexander asked on 02 Jun 2014, 12:50 PM
I am trying to open a phoneapplicationpage xaml file that only contains a RadJumpList in Blend, but receive errors...

ObjectDisposedException: Cannot access a disposed object.
Object name: 'NativeObject'.
StackTrace
   at System.Windows.DependencyObject.MS.Internal.IManagedPeerBase.get_NativeObject()
   at MS.Internal.XcpImports.DependencyObject_SetParentForInheritanceContextOnly(DependencyObject doh, DependencyObject parentDO)
   at System.Windows.DependencyObject.UpdateEffectiveValue(DependencyProperty property, EffectiveValueEntry oldEntry, EffectiveValueEntry& newEntry, ValueOperation operation)
   at System.Windows.DependencyObject.InvalidateProperty(DependencyProperty property)
   at MS.Internal.FrameworkCallbacks.InvalidateProperty(IntPtr nativeTarget, UInt32 propertyId)

The XAML is this:

<phone:PhoneApplicationPage
x:Class="CokeCashLess.WP8.Pages.Enjoy"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone"
xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:telerikDataControls="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.Data"
FontFamily="{StaticResource PhoneFontFamilyNormal}"
FontSize="{StaticResource PhoneFontSizeNormal}"
Foreground="{StaticResource PhoneForegroundBrush}"
SupportedOrientations="Portrait" Orientation="Portrait"
mc:Ignorable="d"
shell:SystemTray.IsVisible="True">

<!--LayoutRoot is the root grid where all page content is placed-->
<Grid x:Name="LayoutRoot" Background="Transparent">
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>

<!--TitlePanel contains the name of the application and page title-->
<!--
<StackPanel Grid.Row="0" Margin="12,17,0,28">
<TextBlock Text="MY APPLICATION" Style="{StaticResource PhoneTextNormalStyle}"/>
<TextBlock Text="page name" Margin="9,-7,0,0" Style="{StaticResource PhoneTextTitle1Style}"/>
</StackPanel>
-->
<!--ContentPanel - place additional content here-->
<Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0">
<telerikDataControls:RadJumpList x:Name="radJumpList" />
</Grid>
</Grid>
</phone:PhoneApplicationPage>

What do I have to do to fix this?


1 Answer, 1 is accepted

Sort by
0
Deyan
Telerik team
answered on 05 Jun 2014, 10:16 AM
Hello Alexander,

We have addressed a similar issue and have released an Internal Build containing the fix. Can you please try downloading the lastest IB available through your Telerik account and replacing your installation assemblies with the ones in the IB to see how it works for you?

Thanks for your time.

Regards,
Deyan
Telerik
 

Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.

 
Tags
JumpList
Asked by
Alexander
Top achievements
Rank 1
Answers by
Deyan
Telerik team
Share this question
or