예제 #1
0
 public void Dispose()
 {
     if (_core != null)
     {
         _core.Dispose();
     }
 }
예제 #2
0
파일: App.xaml.cs 프로젝트: minskowl/MY
        protected override void OnExit(ExitEventArgs e)
        {
            base.OnExit(e);
            AppCore.Dispose();
#if DEBUG
            if (_timer != null)
            {
                _timer.Tick     -= OnTimer;
                _timer.IsEnabled = false;
                _timer           = null;
            }
#endif
        }
예제 #3
0
 public void Stop()
 {
     _core1.Dispose();
 }