3

愚蠢的是,我错误地删除了我的 App.xml 和 App.xml.cs 文件。

我可以在使用源代码控制时重新创建这些文件(有点过时,令人遗憾),但是当我重新创建这些文件并将它们添加回我的项目时,VS 无法构建项目,因为我被告知我没有有一个入口点。

我的解决方法是为应用程序条目创建一个带有“Main”关键字的加载类,并与项目关联,但是在 VS 中重新创建和重新关联我的 App.xml 和 App.xml.cs 文件的正确过程是什么我的项目。

非常感谢。

4

1 回答 1

3

你的问题引起了我的兴趣,所以我创建了一个新项目并删除了App.xamlApp.xaml.cs文件。然后我在项目中添加了一个窗口,并将其在文件属性编辑器中的构建操作更改为ApplicationDefinitionfrom Page,然后我xamlxaml.cs文件更改为应用程序类。之后它正常工作。

IE

应用程序.xaml

<Application x:Class="WpfApplication1.App"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        StartupUri="MainWindow.xaml">
    <Application.Resources>

    </Application.Resources>
</Application>

应用程序.xaml.cs

using System;
using System.Collections.Generic;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Windows;


namespace WpfApplication1
{
    /// <summary>
    /// Interaction logic for App.xaml
    /// </summary>
    public partial class App : Application 
    {

    }
}
于 2013-01-26T23:48:05.370 回答