WPF窗口未打开
本文关键字:窗口 WPF | 更新日期: 2023-09-27 17:58:35
我正在使用wpf应用程序,我已经将入口点Main()更改为另一个文件,没有错误,但MainWindow.xaml没有打开。代码为:
class AppStart : Application
{
[STAThread()]
static void Main()
{
//Console.WriteLine("New entry point added");
new App();
}
public void App()
{
StartupUri = new System.Uri("MainWindow.xaml", UriKind.Relative);
Run();
}
}
有人能解释一下原因吗?
解决了我使用错误的构造函数名称的问题。。应该是AppStart()
,但我在写App()
。。