Adding multiple .xaml pages in silverlight application
I want to add multiple .xaml pages in silverlight application. How can I do this.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Manas PatnaikPosted Dec 1, 2011, 2:03 PM
Priya LingePosted Dec 1, 2011, 12:48 AM
1.We can add multiple XAML pages in silverlight application as follows,
We have navigation:Frame in silverlight with the help of that we can navigate pages in silverlight.
We have 1 folder name XAMLPages in that multiple silverlight pages
Right click--XAMLPages folder--Add Silverlight page--Page1.XAMl,Page2.XAMl,Page3.XAML etc..
We have root page in silverlight which ic MainPage.XAML
In that write navigation for those pages so we can navigates the pages.
2. You can see 1 best example of this in silverlight Business Application.
In Silverlight Business Application we have multiple XAml pages in Views Folder.
Hope this will help you.
Thanks.