Effector.Plugin.StoneCut 3.1.5.7:

- primo rilascio dopo prove su macchina
This commit is contained in:
Emmanuele Sassi
2026-05-05 13:19:32 +02:00
parent 4ecfc1c6dc
commit 5ce2c38baa
78 changed files with 8394 additions and 0 deletions
@@ -0,0 +1,30 @@
Imports Effector.Plugin.Lib
Public Class MainMenuVM
Inherits VMBase
' Definizione comandi
Private m_cmdPage As ICommand
#Region "COMMANDS"
#Region "Page"
Public ReadOnly Property Page_Command As ICommand
Get
If m_cmdPage Is Nothing Then
m_cmdPage = New Command(AddressOf Page)
End If
Return m_cmdPage
End Get
End Property
Public Sub Page(nPage As Integer)
Map.refFiveLakesUIVM.SetSelPage(nPage)
End Sub
#End Region ' Page
#End Region ' COMMANDS
End Class