Files
EgtDOORCreator/Guide/GuideV.xaml.vb
T
Nicola Pievani 0bc8e470b9 EgtDOORCreator 1.8j1 :
- creazione di assemblati
2017-11-21 16:07:47 +00:00

17 lines
538 B
VB.net

Public Class GuideV
Private m_GuideVM As GuideVM
Public Shared m_Language As String
Sub New(Owner As Window, GuideVM As GuideVM)
MyBase.New(Owner)
' This call is required by the designer.
InitializeComponent()
' Add any initialization after the InitializeComponent() call.
Me.DataContext = GuideVM
m_GuideVM = GuideVM
DoorBrowser.Navigate(New Uri(IniFile.m_sHelpDir & "\EnglishTsetJava\" & m_Language & "\" & GuideVM.m_AddressGuide & ".html"))
End Sub
End Class