无法在 Windows 8 中保存状态
{
Error The type or namespace name 'Common' ...does not exist in the namespace 'ProjectName' (are you missing an assembly reference?)
}
下面的所有内容都是我的 App.Xaml.cs 文件中的默认代码,我添加的唯一行是
ProjectNameSpace.Common.SuspensionManager.RegisterFrame(rootFrame, "appframe");
这是来自这里的 windows 8 教程,我在尝试这个http://msdn.microsoft.com/en-us/library/windows/apps/hh986968.aspx之前遵循了第 1 部分。我让它在另一个具有相同引用和 using 语句的项目中工作。项目中只有一个命名空间,我什至重建/清理过。有人有任何额外的信息吗?
protected override void OnLaunched(LaunchActivatedEventArgs args)
{
Frame rootFrame = Window.Current.Content as Frame;
if (rootFrame == null)
{
rootFrame = new Frame();
ProjectNameSpace.Common.SuspensionManager.RegisterFrame(rootFrame, "appframe");
if (args.PreviousExecutionState == ApplicationExecutionState.Terminated)
{
}
Window.Current.Content = rootFrame;
编辑: 问题是我需要在空白模板中添加一个基本页面。此自动生成执行基本功能所需的一些类。下面是公用文件夹需要包含的最少项目的屏幕截图。