Files
omagoffice/CompoCsvTrfDataWindow/CompoTrfDataWindowV.xaml.vb
Dario Sassi 7d913babee OmagOFFICE 2.2h1 :
- richiesta licenza livello 22
- aggiunta gestione opzionale Ordine, Distinta e Nome in import CSV
- aggiunta gestione opzionale Ordine, Distinta e Nome in import DXF
- aggiunta gestione opzionale Ordine, Distinta e Nome in disegno parametrico pezzi
- aggiunta gestione opzionale Blocco e Numero Lastra in definizione grezzo.
2020-08-06 18:47:31 +00:00

23 lines
740 B
VB.net

Public Class CompoTrfDataWindowV
Private m_CompoTrfDataWindowVM As CompoTrfDataWindowVM
Sub New(Owner As Window, CompoTrfDataWindowVM As CompoTrfDataWindowVM)
MyBase.New(Owner)
' This call is required by the designer.
InitializeComponent()
Me.DataContext = CompoTrfDataWindowVM
' Assegno al riferimento locale al VM il VM preso dal DataContext
m_CompoTrfDataWindowVM = CompoTrfDataWindowVM
End Sub
Private Sub OkBtn_Click(sender As Object, e As RoutedEventArgs) Handles OkBtn.Click
DialogResult = True
End Sub
'Private Sub Cancel_Click(sender As Object, e As RoutedEventArgs) Handles CancelBtn.Click
' DialogResult = False
'End Sub
End Class