我在wpf应用程序的App.xaml.cs中有以下代码。
public partial class App: Application
{
protected overrider void OnStartup(StartupEventArgs e)
{
base.OnStartup(e);
base.Activated += App_Activated;
base.DeActivated += App_DeActivated;
new BootStrapper1().Run(true);
}
}
class BootStrapper1: UnityBootstrapper
{
void OnClosing(Object sender, CancelEventArgs e)
{
}
}
是否可以通过OnClosing方法访问Activated和DeActivated事件处理程序?
谢谢。