コード例 #1
0
ファイル: MainWindow.xaml.cs プロジェクト: yeshbourne/KAIT
 /// <summary>
 /// Execute shutdown tasks
 /// </summary>
 /// <param name="sender">object sending the event</param>
 /// <param name="e">event arguments</param>
 private void MainWindow_Closing(object sender, CancelEventArgs e)
 {
     if (_sensorService != null)
     {
         _sensorService.Close();
     }
 }