Permalink
Fetching contributors…
Cannot retrieve contributors at this time
24 lines (20 sloc) 462 Bytes
Imports System.Text
Namespace ExpenseIt
''' <summary>
''' Interaction logic for ExpenseReportPage.xaml
''' </summary>
'<Snippet26>
Partial Public Class ExpenseReportPage
Inherits Page
Public Sub New()
InitializeComponent()
End Sub
' Custom constructor to pass expense report data
Public Sub New(ByVal data As Object)
Me.New()
' Bind to expense report data.
Me.DataContext = data
End Sub
End Class
'</Snippet26>
End Namespace