我有一个这样定义的 xaml 文件:
<UserControl
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
.....
mc:Ignorable="d"
d:DesignHeight="500" d:DesignWidth="800">
<sdk:Frame x:Name="ContentFrame" Source="/MainPageContent.xaml">
</sdk:Frame>
</UserControl>
页面的全部内容存储在 MainPageContent 中。我制作了另一个文件,例如 PageTwoContent.xaml。我如何将 Frame 的源更改为新的 xaml 文件,例如通过按钮?