我刚刚开始WPF。我从后面的代码分配startupURI页面。它给了我这个错误:



这是我在App.xaml中所做的

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

</Application.Resources>

这是我在App.xaml.cs文件中完成的操作:
 private void Application_Startup(object sender, StartupEventArgs e)
    {
        // Create the startup window
        MainWindow wnd = new MainWindow();
        // Do stuff here, e.g. to the window
        wnd.Title = "Something else";
        // Show the window
        wnd.Show();

        //Application.Current.MainWindow = wnd;
        //wnd.InitializeComponent();
        //wnd.Show();
    }

请帮助解决此简单代码中的问题。

最佳答案

StartupUri用于指定应用程序启动时要加载的窗口对象的文件名。 Startup是您要在应用程序启动期间执行某些操作的事件。

09-04 23:10