6e4da2e5ff
-aggiunto buttone setup e flag relativo per la visualizzazione del pulsante -suddiviso configurationpage in tre pagine
21 lines
665 B
VB.net
21 lines
665 B
VB.net
Public Class StatisticsWndV
|
|
|
|
Private WithEvents m_StatisticsVM As StatisticsVM
|
|
|
|
Sub New(Owner As Window, StatisticsVM As StatisticsVM)
|
|
MyBase.New(Owner)
|
|
' This call is required by the designer.
|
|
InitializeComponent()
|
|
' Add any initialization after the InitializeComponent() call.
|
|
Me.DataContext = StatisticsVM
|
|
Me.Tag = Map.refProjectVM.BTLStructureVM
|
|
' Assegno al riferimento locale al VM il VM preso dal DataContext
|
|
m_StatisticsVM = StatisticsVM
|
|
End Sub
|
|
|
|
Private Sub CloseWindow(bDialogResult As Boolean) Handles m_StatisticsVM.m_CloseWindow
|
|
Me.DialogResult = bDialogResult
|
|
End Sub
|
|
|
|
End Class
|