How to replace the text which appear when Navigation Pane is minimized in WPF based on the selected navigation pane item. Navigationpane used here is the navigation pane available from stemasoft.com with its dll.
Asked
Active
Viewed 207 times
1 Answers
0
I guess you are looking for the BarTitle attribute
<stema:NavigationPane BarTitle="My title">
<stema:NavigationPaneItem Header="Item 1">
<local:MyControl/>
</stema:NavigationPaneItem>
</stema:NavigationPane>
You can also specify an image for every item.

Dtex
- 2,593
- 1
- 16
- 17
-
This Header will be displayed only when Navigation Pane is expanded.But I need to display the text(instaed of displaying 'Navigation Pane') when it is minimized. – Revathi Oct 16 '12 at 13:29