0

我的应用程序中有一个 XAML 文件,我正在尝试通过框架控件将其他 XAML 文件加载到其中,但是它不起作用。我收到一个错误Content for the URI is invalid。当我运行应用程序时,该错误只是作为对话框错误弹出,因此没有可用的堆栈跟踪。

以下是我的“母版页”的代码:

<navigation:Page x:Class="SilverAIM.BusinessCenter.BusinessCenterMaster" 
           xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
           xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 
           xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
           xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
           mc:Ignorable="d"
           xmlns:navigation="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Navigation"
           d:DesignWidth="758" d:DesignHeight="480"
           Title="BusinessCenterMaster Page">
    <Grid x:Name="LayoutRoot">
        <navigation:Frame Height="100" HorizontalAlignment="Left"  Margin="0,248,0,0" Source="Test.xaml" Name="testFrame" VerticalAlignment="Top" Width="758" />
    </Grid>
</navigation:Page>
4

1 回答 1

0

使用 ContentControl 而不是 Frame 让它工作。

于 2012-11-29T15:17:18.533 回答