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 608921
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T17:30:38+00:00 2026-05-13T17:30:38+00:00

I attached an EventHandler to the MouseDoubleClick event. <Style TargetType=ListViewItem BasedOn={StaticResource MyStyle}> <EventSetter Event=MouseDoubleClick

  • 0

I attached an EventHandler to the MouseDoubleClick event.

<Style TargetType="ListViewItem" BasedOn="{StaticResource MyStyle}">                                
    <EventSetter Event="MouseDoubleClick" Handler="ListViewItem_MouseDoubleClick" />
</Style>

private void ListViewItem_MouseDoubleClick(object sender, RoutedEventArgs e) {}

The ListView‘s View is based on the GridView, one of the column contains a CheckBox.
I want to be able to ignore the double click if the CheckBox is double-clicked.

The problem is that I cannot find the original source (CheckBox) to block it, as with routing event I got the Theme as the original source, and with direct I got the ListViewItem.

  • 1 1 Answer
  • 0 Views
  • 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-13T17:30:39+00:00Added an answer on May 13, 2026 at 5:30 pm

    You can use the VisualTreeHelper to find out if any ancestor of the OriginalSource is a CheckBox like this:

    private void ListViewItem_MouseDoubleClick(object sender, RoutedEventArgs e)
    {
        var obj = e.OriginalSource as DependencyObject;
    
        // suppress event?
        if (IsWithinCheckBox(obj))
            return;
    
        // handle your event here
    }
    
    private bool IsWithinCheckBox(DependencyObject obj)
    {
        while (obj != null)
        {
            if (obj is CheckBox)
                return true;
    
            obj = VisualTreeHelper.GetParent(obj);
        }
    
        return false;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I attached an event handler to Entity Framework's SavingChanges event. Now, I found out
I have successfully attached autocomplete to the span tag with click event handler via
In the code HTML+Script below, an event handler is attached after page load using
I have an onbeforeunload event handler attached to the page which executes every time
Setup: I have attached an event handler on the WebBrowser control something like this...
Using jQuery, I have attached a click event handler to some li HTML elements.
I have created a TextBox dynamically and attached a Tap event handler to it
I have been unable to trigger an onselect event handler attached to a <div>
This event is attached to a set of elements: var elems = $(this).filter(function(){ ...
I'm having an issue with an event handler in SharePoint. I have a list

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.