I know this might be a simple question but I can't seem to find an answer. I'm would like to have a master detail page that would have a few items on the master and a few items on the detail section. This is no problem. However, I would like to have the Master section to be visible when the page is loaded and the detail section in the background. I am using XAML. I would think setting IsPresented = True would work but it does not. Anyone?
Here is the basic sample that I am working with.
<MasterDetailPage.Master IsPresented="True" >
Master content here...
</MasterDetailPage.Master>
<MasterDetailPage.Detail >
Detail Content here...
</MasterDetailPage.Detail>