重命名xaml文件的正确方法是什么?

时间:2012-03-02 05:30:19

标签: windows-phone-7 windows-mobile windows-phone-7.1

我正在重命名我的MainPage.xaml文件,并尝试将其他页面设为MainPage.xaml,我只是将其从xaml(x:Class)和.cs文件重命名。

所以现在运行我的项目时,我从生成的文件(MainPage.g.i.cs)获取此行的XamlParseException

System.Windows.Application.LoadComponent(this,new System.Uri(“/ XYZ; component / MainPage.xaml”,System.UriKind.Relative));

所以对于出了什么问题的任何线索?...

1 个答案:

答案 0 :(得分:0)

文件名仅对导航很重要,例如WMAppManifest.xml的初始启动页面。

对于x:Class,您指定类名,而不是文件名,即。:

public class HelloWorld : PhoneApplicationFrame

此处 HelloWorld 类名,并且应该在x:Class中匹配,当然还有相应的命名空间(如果有的话)。