EgtCAM5 1.8k3 :

- migliorata gestione analisi e distanza chiusi in automatico al lancio di altri comandi.
This commit is contained in:
Dario Sassi
2017-11-22 07:42:45 +00:00
parent af7077dfa8
commit 915ab2be15
2 changed files with 11 additions and 3 deletions
+9 -1
View File
@@ -1174,7 +1174,7 @@ Namespace EgtCAM5
Application.Msn.NotifyColleagues(Application.NOTIFYSTATUSOUTPUT, sDistance)
End Sub
Private Sub Scene1_KeyDown(ByVal sender As System.Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles m_ProjectScene.KeyDown
Private Sub OnSceneKeyDown(ByVal sender As System.Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles m_ProjectScene.KeyDown
' Con DEL eseguo cancellazione delle entità selezionate
If e.KeyData = System.Windows.Forms.Keys.Delete Then
m_Controller.SetLastInteger(GDB_ID.SEL)
@@ -1194,6 +1194,14 @@ Namespace EgtCAM5
End If
End Sub
Private Sub OnSceneCloseAnalyze(sender As System.Object) Handles m_ProjectScene.OnCloseAnalyze
Application.Msn.NotifyColleagues(Application.ANALYZE_ISCHECKED, False)
End Sub
Private Sub OnSceneCloseGetDist(sender As System.Object) Handles m_ProjectScene.OnCloseGetDist
Application.Msn.NotifyColleagues(Application.GETDISTANCE_ISCHECKED, False)
End Sub
#End Region
#Region "CONTROLLER EVENTS"