Expression Blend 4 意外删除了 App.xaml
我对 Expression 很陌生,不小心删除了 App.xaml 文件。我认为这是一个重要的文件,我无法研究如何创建等效文件。
请帮忙,
安迪
Im new to Expression and by accident I deleted the App.xaml file. I think this is an important file and I cannot workout how to create an equivalent.
Please help,
Andy
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
创建一个新项目并复制该项目。
除非您定义了应用程序资源,否则您可能会遇到麻烦。
可能是源代码控制的一个很好的论据。
Create a new project and copy that one.
Unless you had Application Resources defined, then you may be in trouble.
Might be a good argument for Source Control.
您可以创建一个新页面并将其命名为
App.xaml
。将其标记替换为 benPearce 所示:
将上面的“Test”替换为您的命名空间,将“Window1”替换为您想要在项目中显示的第一页的名称。
将 App.xaml.cs 代码隐藏中的类替换为:
确保在“应用程序”区域中设置项目属性,以便启动对象为
YourNamespace.App
。执行构建,您应该不会再收到与“App”相关的错误。
You can create a new Page and call it
App.xaml
.Replace its markup as benPearce indicated with this:
Replace "Test" above with your namespace and "Window1" with the name of the first page you want shown in your project.
Replace the class in the App.xaml.cs code-behind with this:
Ensure that your Project Properties are set in the "Application" area such that your startup object is
YourNamespace.App
.Perform a build and you shouldn't get anymore errors related to 'App'.