Hola,
Qué tutorial estás haciendo? Seguramente te habrás dejado algún trozo de código. Si te fijas en cualquiera de los ejemplos del SDK (http://code.msdn.microsoft.com/windowsapps/Windows-8-Modern-Style-App-Samples)
se comprueba si el rootFrame tiene un valor y si no lo tiene se crea el Frame, seguramente has puesto la llamada antes de que el rootFrame sea inicializado:
protected override async void OnLaunched(LaunchActivatedEventArgs args)
{
Frame rootFrame = Window.Current.Content as Frame;
// Do not repeat app initialization when the Window already has content,
// just ensure that the window is active
if (rootFrame == null)
{
// Create a Frame to act as the navigation context and navigate to the first page
rootFrame = new Frame();
// Associate the frame with a SuspensionManager key
SuspensionManager.RegisterFrame(rootFrame, "AppFrame");
La próxima vez que hagas una pregunta da un enlace a los ejemplos que estás siguiendo y pon algo más de código para poder tener el contexto y así entender mejor la pregunta.
Un saludo,
Juanma
Juan Manuel Servera
twitter: @jmservera
mi blog: http://jmservera.com
Únete al grupo de WP7 en LinkedIn
MCPD WP7 Developer - MCTS Sharepoint 2010 Application Development