引导程序中的事件处理程序

时间:2019-04-02 23:22:40

标签: c# wpf unity-container

我在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事件处理程序?

谢谢。

0 个答案:

没有答案