EgtCAM5 :

- Correzzione EgtSaveFile Dialog.
- Eliminazione Can da tutti i comandi dei bottoni nel programma.
This commit is contained in:
Emmanuele Sassi
2017-02-10 18:36:10 +00:00
parent fe91bda565
commit 2ee84a514d
18 changed files with 339 additions and 848 deletions
@@ -40,7 +40,7 @@ Namespace EgtCAM5
Public ReadOnly Property ExecCommand As ICommand
Get
If m_cmdExec Is Nothing Then
m_cmdExec = New RelayCommand(AddressOf Exec, AddressOf CanExec)
m_cmdExec = New RelayCommand(AddressOf Exec)
End If
Return m_cmdExec
End Get
@@ -53,13 +53,6 @@ Namespace EgtCAM5
Application.Msn.NotifyColleagues(Application.EXECSCRIPT, String.Empty)
End Sub
''' <summary>
''' Returns always true.
''' </summary>
Private Function CanExec(ByVal param As Object) As Boolean
Return True
End Function
#End Region ' ExecCommand
#Region "OpenMruScriptCommand"