gpt4 book ai didi

wpf - 找不到资源 'application_startup'

转载 作者:行者123 更新时间:2023-12-02 06:30:38 41 4
gpt4 key购买 nike

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

Cannot locate resource 'application_startup'"



这是我在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是您要在应用程序启动期间执行某些操作的事件。

关于wpf - 找不到资源 'application_startup',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38240034/

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