gpt4 book ai didi

c# - 删除了我的 App.xml 和 App.xml.cs 文件

转载 作者:行者123 更新时间:2023-11-30 16:20:12 25 4
gpt4 key购买 nike

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

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

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

非常感谢。

最佳答案

你的问题引起了我的兴趣,所以我创建了一个新项目并删除了 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>

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

}
}

关于c# - 删除了我的 App.xml 和 App.xml.cs 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14542311/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com