Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Remove WPF Back/Forward Page navigation Button in Desktop App

I am working on a WPF desktop application and I have a main window and I use frame control to navigate to different pages. It works perfectly fine. But I Want the Back/ Forward to be removed. How do I do it ? Please help me in this regard !

like image 263
Ganesh Kumar Avatar asked Jan 11 '23 17:01

Ganesh Kumar


1 Answers

Set NavigationUIVisibility="Hidden" on your Frame object to hide navigation buttons.

<Frame NavigationUIVisibility="Hidden"/>
like image 78
Rohit Vats Avatar answered Jan 30 '23 08:01

Rohit Vats