Replacing the text which appear when Navigation Pane (Stemasoft) is minimized in WPF

StackOverflow https://stackoverflow.com/questions/12911268

  •  07-07-2021
  •  | 
  •  

문제

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.

도움이 되었습니까?

해결책

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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top