View Questions by Category
There are no sub categories
Category » Navigation Pane
There were 3 questions found in this category:
Changing Color Scheme of NavigationPane
To change navigation pane colors you need to access the navigationPane.NavigationBar.ColorScheme object.Sample attached below shows how to do that.
How To Create NavigationPane Buttons Using Code
Following code illustrates how to create the NavigationPane panel and the button, connect them and add them to the NavigationPane control: Private Sub CreateNewPanel() Dim button As DevComponents.DotNetBar.ButtonItem button = New DevComponents.DotNetBar.ButtonItem() button.ButtonStyle = DevC ...
Localizing NavigationPane, NavigationBar
To localize NavigationPane or NavigationBar you need to handle the LocalizeString event on NavigationBar. First you need to wire the LocalizeString event in form load event like this (sample is for NavigationPane): navigationPane1.ConfigureItemVisible=false;navigationPane1.NavigationBar.Localize ...