예제 #1
0
파일: App.xaml.cs 프로젝트: shaftware/Torch
 private void Application_Activated(object sender, ActivatedEventArgs e)
 {
     LampDevice = new LampDevice();
 }
예제 #2
0
파일: App.xaml.cs 프로젝트: shaftware/Torch
 private void Application_Launching(object sender, LaunchingEventArgs e)
 {
     LampDevice = new LampDevice();
 }
예제 #3
0
파일: App.xaml.cs 프로젝트: shaftware/Torch
 private void RootFrame_Unobscured(object sender, EventArgs e)
 {
     if (Settings.DisableApplicationIdleDetection && LampDevice.IsDisposed)
     {
         LampDevice = new LampDevice();
     }
 }