0

我正在使用与 Silverlight 框架导航集成的区域导航,如下所示:我有我的框架,我附加了一个区域,并将其设置为ContentLoaderFrameContentLoaderKarl Shiflett 的示例中获得的:

<navigation:Frame 
    x:Name="ContentFrame" 
    Style="{StaticResource ContentFrameStyle}" 
    Source="/Home" 
    Navigated="ContentFrame_Navigated" 
    NavigationFailed="ContentFrame_NavigationFailed"
    prism:RegionManager.RegionName="MainContentRegion">

    <navigation:Frame.ContentLoader>
        <prism_Regions:FrameContentLoader RegionName="MainContentRegion"/>
    </navigation:Frame.ContentLoader>

    <navigation:Frame.UriMapper>
      <uriMapper:UriMapper>
         <uriMapper:UriMapping Uri="" MappedUri="/MyProject.Views.Home" />
         <uriMapper:UriMapping Uri="/{pageName}" MappedUri="/MyProject.Views.{pageName}" />
      </uriMapper:UriMapper>
    </navigation:Frame.UriMapper>
</navigation:Frame>

我得到以下异常:“元素已经是另一个元素的子元素。” ,这是堆栈跟踪:

   at MS.Internal.XcpImports.CheckHResult(UInt32 hr)
   at MS.Internal.XcpImports.SetValue(IManagedPeerBase obj, DependencyProperty property, DependencyObject doh)
   at MS.Internal.XcpImports.SetValue(IManagedPeerBase doh, DependencyProperty property, Object obj)
   at System.Windows.DependencyObject.SetObjectValueToCore(DependencyProperty dp, Object value)
   at System.Windows.DependencyObject.SetEffectiveValue(DependencyProperty property, EffectiveValueEntry& newEntry, Object newValue)
   at System.Windows.DependencyObject.UpdateEffectiveValue(DependencyProperty property, EffectiveValueEntry oldEntry, EffectiveValueEntry& newEntry, ValueOperation operation)
   at System.Windows.DependencyObject.SetValueInternal(DependencyProperty dp, Object value, Boolean allowReadOnlySet)
   at System.Windows.Controls.ContentControl.set_Content(Object value)
   at System.Windows.Navigation.NavigationService.CompleteNavigation(DependencyObject content)
   at System.Windows.Navigation.NavigationService.ContentLoader_BeginLoad_Callback(IAsyncResult result)

每当我尝试导航到主页视图时都会发生这种情况,而所有其他导航请求都成功完成!为了确保问题不在于视图本身,我尝试将Home替换为About这是一个现有视图(使其成为启动视图),但问题仍然存在!现在,我可以导航到Home但不能导航到About

什么可能导致这样的问题?

PS:即使我删除了Source属性的分配Frame默认值 UriMapper(第一个),问题仍然存在。有了这个,我访问的第一个视图出现错误,其他视图工作正常。

4

1 回答 1

0

我终于偶然发现了这个问题的“真正原因”!

我在 App.xaml 中找到了以下几行

protected virtual void InitializeRootVisual()
{
    BusyIndicator busyIndicator = new BusyIndicator();
    busyIndicator.Content = new Shell();
    busyIndicator.HorizontalContentAlignment = HorizontalAlignment.Stretch;
    busyIndicator.VerticalContentAlignment = VerticalAlignment.Stretch;
    this.RootVisual = busyIndicator;
}

我不太确定这里到底发生了什么导致问题(也许有人可以启发我),但删除它解决了问题。

我希望有一天这可以帮助某人(也许是“未来的我”):)

于 2011-04-21T09:35:48.540 回答