Sub Class_Globals
	Private Root As B4XView
	Private xui As XUI
	
@@@consts
@@@defs
End Sub

Public Sub Initialize As Object
@@@init
	Return Me
End Sub

'This event will be called once, before the page becomes visible.
Private Sub B4XPage_Created (Root1 As B4XView)
	Root = Root1
	Root.LoadLayout("LayoutName")
End Sub

'You can see the list of page related events in the B4XPagesManager object. The event name is B4XPage.

@@@methods
@@@events
@@@mapsto
@@@mapsfrom
@@@newlist

