Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 272317
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T00:17:51+00:00 2026-05-12T00:17:51+00:00

so I have attached a context menu (right-click menu) to a wpf listview. unfortunately,

  • 0

so I have attached a context menu (right-click menu) to a wpf listview.

unfortunately, when you right-click it brings up both the menu and selects whatever item you are over. Is there a way to shut off this right-click select behavior while still allowing the context menu?

  • 1 1 Answer
  • 1 View
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T00:17:52+00:00Added an answer on May 12, 2026 at 12:17 am

    The key is setting the PreviewMouseRightButtonDown event in the correct place. As you’ll notice, even without a ContextMenu right clicking on a ListViewItem will select that item, and so we need to set the event on each item, not on the ListView.

    <ListView>
        <ListView.ItemContainerStyle>
            <Style TargetType="{x:Type ListViewItem}">
                <EventSetter Event="PreviewMouseRightButtonDown"
                             Handler="OnListViewItemPreviewMouseRightButtonDown" />
            </Style>
        </ListView.ItemContainerStyle>
        <ListView.ContextMenu>
            <ContextMenu>
                <MenuItem Header="Menu Item">Item 1</MenuItem>
                <MenuItem Header="Menu Item">Item 2</MenuItem>
            </ContextMenu>
        </ListView.ContextMenu>
        <ListViewItem>Item</ListViewItem>
        <ListViewItem>Item</ListViewItem>
        <ListViewItem>Item</ListViewItem>
        <ListViewItem>Item</ListViewItem>
        <ListViewItem>Item</ListViewItem>
        <ListViewItem>Item</ListViewItem>
    </ListView>
    

    private void OnListViewItemPreviewMouseRightButtonDown(object sender, MouseButtonEventArgs e)
    {
        Trace.WriteLine("Preview MouseRightButtonDown");
    
        e.Handled = true;
    }
    

    Since the preview events are tunneling this will block the RightMouseButtonDown from occurring on the ListViewItems preventing them from being selected, but not prevent the RightMouseButtonDown on the ListView and so still allow the ContextMenu to open.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a context menu attached to a panel, that should mirror commands available
I've got a list of links which have a click event attached to them,
I have a ListActivity . Each item in the ListView contains a RatingBar .
I am finishing up a Drupal site and I have attached a word document
I have an array of FileReference objects which have several listeners attached to each
I have Visual Studio web test attached nicely to a data source, but I
I have a little javascript function which is attached to an onClick event of
I have an asp.net textbox and a MaskedEditExtender control attached to it. The textbox
I have a need to find all of the writable storage devices attached to
I have been unable to trigger an onselect event handler attached to a <div>

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.