Outlook Example in CTP Samples
Hi
I was going through Outlook example and I noticed that in Email part designer I am not able to see NavigationManager but if we see XAML it is actually there.
It is some bug or I need to know something.
Thanks
AllTec
Hi
I was going through Outlook example and I noticed that in Email part designer I am not able to see NavigationManager but if we see XAML it is actually there.
It is some bug or I need to know something.
Thanks
AllTec
Hi AllTec,
Thanks for your feedback. So when you say "I am not able to see NavigationManager" - what do you actually see in the top section of the designer?
This is what I see: http://www.bulankou.com/files/navmgr.jpg
Thanks!
It shows in the designer as "Unnamed" navigation manager because there's no name specified for it, i.e. the designer UI displays the name, not the type. if you add a name to your navigation manager, e.g.
<AcropolisApplication.NavigationManager> <Afx:SinglePartNavigationManager x:Name="myNavigationManager"/> </AcropolisApplication.NavigationManager>the name will appear in the UI.
Thanks!