Is it possible to create masterpage in Silverlight 4.0 as we have in ASP.NET 2.0
If possible please guide me how to do that...
Loading User Information from Channel 9
Something went wrong getting user information from Channel 9
Loading User Information from MSDN
Something went wrong getting user information from MSDN
Loading Visual Studio Achievements
Something went wrong getting the Visual Studio Achievements
Is it possible to create masterpage in Silverlight 4.0 as we have in ASP.NET 2.0
If possible please guide me how to do that...
Kind of. Check this walkthrough out
http://timheuer.com/blog/articles/getting-started-with-silverlight-development.aspx
Well it depends on what you mean by "Master Page"
first there is the Navigation framework - by default if you use the templates that use that you get a "Parent" page that loads "child" pages that will share the parent's default style settings.
also you can create a style set that uses implied styles to make the UI look the same for each page by default.
the navigation framework does not share code in partail classes the way an ASP.NET master page does.
what are you looking for? visual look or code sharing or ???
figuerres said:Well it depends on what you mean by "Master Page"
first there is the Navigation framework - by default if you use the templates that use that you get a "Parent" page that loads "child" pages that will share the parent's default style settings.
also you can create a style set that uses implied styles to make the UI look the same for each page by default.
the navigation framework does not share code in partail classes the way an ASP.NET master page does.
what are you looking for? visual look or code sharing or ???
Thanks for your reply.
I have an existing web application (2.0 framework).Now i am trying to create the same application in Silverlight 4.0.
The 2.0 web application which i have has nearly 6 master pages..lets say for example i have
1)Admin.Master
2)Product.Master
3)Customer.Master
4)Merchant.Master...so on...
When ever i redirect to the page that inherits from the corresponding master pages the menus will be loaded in the master page left hand side.
I wanna to do the same in my silverlight using MVVM Patter.
This time i am gonna use WCF Service instead of DateLayer which i have used in 2.0 web application.....
Could you help me with some ideas....
Thread Closed
This thread is kinda stale and has been closed but if you'd like to continue the conversation, please create a new thread in our Forums,
or Contact Us and let us know.