Microsoft Silverlight – Create a global variable to keep track of which page you are on

This is my example of creating a global variable that keeps track of which page I am on.

Created a class clsApplicationGlobal.vb

Public NotInheritable Class clsApplicationGlobal
   Public Shared HoldThePage As String
End Class

In each form, I put the following …