Files
omagoffice/MachOptionWindow/MachOptionWindowV.xaml.vb
Emmanuele Sassi 130e41ba9a OmagOFFICE 1.8f1 :
- Aggiunta gestione pannello macchina.
- Aggiunti Db utensili e lavorazioni.
- Aggiunte opzioni macchina.
- Aggiunto menù recenti su apri progetto.
- Aggiunte verifiche compatibilità tra Db utensili, Db lavorazioni, attrezzaggio, lavorazioni correnti, materiale e spessore.
- Migliorie varie.
2017-06-06 08:08:46 +00:00

15 lines
457 B
VB.net

Public Class MachOptionWindowV
Private m_MachOptionWindowVM As MachOptionWindowVM
Sub New(Owner As Window, MachOptionWindowVM As MachOptionWindowVM)
MyBase.New(Owner)
' This call is required by the designer.
InitializeComponent()
Me.DataContext = MachOptionWindowVM
' Assegno al riferimento locale al VM il VM preso dal DataContext
m_MachOptionWindowVM = MachOptionWindowVM
End Sub
End Class