Skip to main content
A newer version of this page is available. .

NavBarViewBase.GetNavBarItem(RoutedEventArgs) Method

Gets an item related to the event whose data is passed via the method’s parameter.

Namespace: DevExpress.Xpf.NavBar

Assembly: DevExpress.Xpf.NavBar.v18.2.dll

Declaration

public NavBarItem GetNavBarItem(
    RoutedEventArgs e
)

Parameters

Name Type Description
e RoutedEventArgs

A RoutedEventArgs descendant specifying the routed event.

Returns

Type Description
NavBarItem

A NavBarItem object representing the item related to the specified event. If no item relates to the event, null (Nothing in Visual Basic) is returned.

Remarks

When an end-user performs any actions within a view (such as clicks or hovers the view, etc), responding to these actions may be required, to determine the underlying group or item that corresponds to the event generated by the action. Use the GetNavBarItem method to obtain an item relating to the event that is described by the passed event argument.

//...
using DevExpress.Xpf.NavBar;
//...
        public Window1(){
            InitializeComponent();

            navBar.View.Click += new RoutedEventHandler(View_Click);
        }

        void View_Click(object sender, RoutedEventArgs e){
            NavBarGroup group = navBar.View.GetNavBarGroup(e);
            NavBarItem item = navBar.View.GetNavBarItem(e);
            if (group != null || item != null)
                MessageBox.Show("Click - " + (item != null ? "Item: " + item.Content : "Group: " + group.Header));
        }

The following code snippets (auto-collected from DevExpress Examples) contain references to the GetNavBarItem(RoutedEventArgs) method.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also