DevComponents.com

Category » Navigation Panerss button

There were 3 questions found in this category:

  1. questionChanging 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.
  2. questionHow 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 ...
  3. questionLocalizing 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 ...