Me.UltraToolbarsManager1.NavigationToolbar.Visible = True
By default, the Navigation toolbar’s Visible property is set to False, which means the toolbar is hidden. Unlike the Ribbon or the Mini toolbar, the Navigation toolbar does not have a button on the WinToolbarsManager in-place designer allowing you to quickly show the toolbar. While the ultraToolbarsManager1 component is selected, find the Visible property off the NavigationToolbar object in the properties window and set it to True. You can also set the Navigation toolbar’s visibility at run time in the form’s Load event or a method call that suits your application’s logic.
The following code will cause the Navigation toolbar to be visible.
In Visual Basic:
Me.UltraToolbarsManager1.NavigationToolbar.Visible = True
In C#:
this.ultraToolbarsManager1.NavigationToolbar.Visible = true;