删除了我的应用.xml和应用.xml.cs文件

本文关键字:xml 应用 cs 文件 删除 我的 | 更新日期: 2023-09-27 17:56:05

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

当我

使用源代码管理时,我能够重新创建这些文件(遗憾的是有点过时了),但是当我重新创建这些文件并将它们添加回我的项目中时,VS 无法构建项目,因为我被告知我没有入口点。

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

非常感谢。

删除了我的应用.xml和应用.xml.cs文件

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

App.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 
    {
    }
}