Exemplo n.º 1
0
 public void Update()
 {
     if (iController.Connected)
     {
         try
         {
             CurrentPosition = GetPosition();
             // This call will trigger users to read the Angle
             // which will be obtained from the controller
             //NotifyPropertyChanged("Angle");
         }
         catch (Exception ex)
         {
             ASCOM.Utilities.Util util = new Util();
             //MessageBox(ex.Message, MessageBoxOptions.mbOKOnly, "Exception");
         }
     }
 }