This is probably something really, really simple ... but I am at a loss.
I can change the colour of the page in the designer, but not the code.
For the example below, why is my page background not changing to red? 
	
	
	
	
	
	
	
	
	
		Private Sub Application_Start (Nav As NavigationController)
 
    NavControl = Nav
 
    Page1.Initialize("Page1")
    Page1.Title = "Arnold by Stingrae"
    Page1.RootPanel.Color = Colors.Red
    Page1.RootPanel.LoadLayout("lytMain")
    NavControl.ShowPage(Page1)
    pagLogIn.Initialize("pagLogIn")
    pagLogIn.Title = Page1.Title
    pagLogIn.RootPanel.Color = Colors.Red
    pagLogIn.RootPanel.LoadLayout("lytLogIn")
    
    NavControl.ShowPage(pagLogIn)
      
End Sub