130e41ba9a
- 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.
15 lines
457 B
VB.net
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
|