2 Imports System
.Windows
.Media
3 Imports System
.Windows
.Navigation
6 Public Class ImageCustomContentState
7 Inherits CustomContentState
9 Public Sub New(ByVal imageSource
As ImageSource
, ByVal filename
As String)
10 Me.imageSource
= imageSource
11 Me.filename
= filename
14 Public Overrides
Sub Replay(ByVal navigationService
As NavigationService
, ByVal mode
As NavigationMode
)
15 Dim homePage
As HomePage
= DirectCast(navigationService
.Content
, HomePage
)
16 homePage
.viewImage
.Source
= Me.imageSource
17 homePage
.nameLabel
.Content
= Me.filename
20 Public Overrides ReadOnly
Property JournalEntryName() As String
26 Private filename
As String
27 Private imageSource
As ImageSource