Hello.
I am beginning in Silverlight.
In the Startup I call the Page.
this.RootVisual = New page();
When I execute the comand, this work.
var page = App.Current.RootVisual as Test.Page;
But, I need to call Login page before Page. To change in the startup:
this.RootVisual = New login();
This below line, don't work, because rootvisual is refering the login. How to modify rootvisual for Page after login?
var page = App.Current.RootVisual as Test.Page;
Is Correct the form as is making? Any ideia?
Thankyou
Teles