14 lines
373 B
VB.net
14 lines
373 B
VB.net
Public Class AlzAndFrontV
|
|
|
|
Private WithEvents m_AlzAndFrontVM As AlzAndFrontVM
|
|
|
|
Sub New(AlzAndFrontVM As AlzAndFrontVM)
|
|
' This call is required by the designer.
|
|
InitializeComponent()
|
|
Me.DataContext = AlzAndFrontVM
|
|
' Assegno al riferimento locale al VM il VM preso dal DataContext
|
|
m_AlzAndFrontVM = AlzAndFrontVM
|
|
End Sub
|
|
|
|
End Class
|