Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当应用程序启动时,我需要调用通常由 mainpage.xaml 的按钮触发的方法。我需要使用 app.xaml 的 Application_Launching 方法吗?如果是,如何?
谢谢
您的目标应该是尽快显示 MainPage.xaml。
而不是实际调用该方法,您应该只设置一个布尔值,指示您应该调用它,然后在 MainPage.xaml.cs 中调用该方法(或者您的项目是结构化的)。
应用程序.xaml.cs:
public static bool IsInitialLaunch = true;
MainPage.xaml.cs
加载事件:
if (App.IsInitialLaunch){ SomeMethod(); App.IsInitialLaunch = false; }