- creazione dictionary

- creazione lista porte
This commit is contained in:
Emmanuele Sassi
2024-07-31 19:44:01 +02:00
parent 686596c5fc
commit d1afc92d94
22 changed files with 1688 additions and 12 deletions
@@ -0,0 +1,29 @@
Public Class MainMenuVM
' Definizione comandi
Private m_cmdDoorList As ICommand
Private m_cmdMachineStatus As ICommand
Private m_cmdStatistics As ICommand
#Region "COMMANDS"
#Region "DoorList"
Public ReadOnly Property DoorList_Command As ICommand
Get
If m_cmdDoorList Is Nothing Then
m_cmdDoorList = New Command(AddressOf DoorList)
End If
Return m_cmdDoorList
End Get
End Property
Public Sub DoorList()
End Sub
#End Region ' DoorList
#End Region ' COMMANDS
End Class