如何使用 WinUI 3 处理 OnSuspending
How can I handle OnSuspending with WinUI 3
这次我必须将 UWP 应用程序迁移到 WinUI 3,到目前为止,除了一些小问题外,一切都运行良好,但事件 OnSuspending
根本没有被触发。在命名空间 Windows.UI.Xaml 中,您可以轻松使用
this.Suspending += OnSuspending
在 app.xaml.cs 这不是问题,在 Microsoft.UI.Xaml 我做不到。我现在已经在 app.xaml.cs
中声明了一个 SuspendingEventhandler
public event SuspendingEventHandler Suspending;
但这根本行不通。我该如何解决这个问题?
WinUI 3 可用于构建 desktop/WIn32 Windows 应用程序(参见 docs) and this kind of apps are not suspended 所以没有 Suspending
事件被引发。
这次我必须将 UWP 应用程序迁移到 WinUI 3,到目前为止,除了一些小问题外,一切都运行良好,但事件 OnSuspending
根本没有被触发。在命名空间 Windows.UI.Xaml 中,您可以轻松使用
this.Suspending += OnSuspending
在 app.xaml.cs 这不是问题,在 Microsoft.UI.Xaml 我做不到。我现在已经在 app.xaml.cs
中声明了一个SuspendingEventhandler
public event SuspendingEventHandler Suspending;
但这根本行不通。我该如何解决这个问题?
WinUI 3 可用于构建 desktop/WIn32 Windows 应用程序(参见 docs) and this kind of apps are not suspended 所以没有 Suspending
事件被引发。