我试图在后面的代码中更改根框架:
// Do not add any additional code to this method
private void CompleteInitializePhoneApplication(object sender, NavigationEventArgs e)
{
// Set the root visual to allow the application to render
if (RootVisual != RootFrame)
{
RootVisual = RootFrame; // here or somewhere before ...
}
...我需要更改根框架(但清单中没有)。有人知道吗?非常感谢答案或提示。