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

  • Home
  • SEARCH
  • 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 933175
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T20:47:16+00:00 2026-05-15T20:47:16+00:00

The simplified example this; picture a Venn diagram made from two elements, A and

  • 0

The simplified example this;
picture a Venn diagram made from two elements, A and B, that overlap.
If I mouse over (A AND (NOT B)) all of A lights up.
If I mouse over (B AND (NOT A)) all of B lights up.
If I mouse over (A AND B), BOTH should light up. Only the top most is marked as having the mouse over it.

Is there a way to allow IsMouseOver to tunnel like this?
If not, any suggestions?

  • 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-15T20:47:16+00:00Added an answer on May 15, 2026 at 8:47 pm

    You can do manual hit testing using VisualTreeHelper. This can go into a MouseMove handler on some parent object. Here I’m assuming a Venn diagram made of ellipses named RedCircle and BlueCircle:

    bool overRed = false;
    bool overBlue = false;
    if (BlueCircle.IsMouseOver || RedCircle.IsMouseOver)
    {
        HitTestParameters parameters = new PointHitTestParameters(e.GetPosition(RedCircle));
        VisualTreeHelper.HitTest(RedCircle, new HitTestFilterCallback(element => HitTestFilterBehavior.Continue), result =>
        {
            if (result.VisualHit == RedCircle)
                overRed = true;
            return HitTestResultBehavior.Continue;
        }, parameters);
    
        parameters = new PointHitTestParameters(e.GetPosition(BlueCircle));
        VisualTreeHelper.HitTest(BlueCircle, new HitTestFilterCallback(element => HitTestFilterBehavior.Continue), result =>
        {
            if (result.VisualHit == BlueCircle)
                overBlue = true;
            return HitTestResultBehavior.Continue;
        }, parameters);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

So I have two tables in this simplified example: People and Houses. People can
I have a larger SQL that produces a similar output as this simplified example:
<h:commandLink id=#{id} value=#{value} action=#{actionBean.getAction} onclick=alert(this);/> In the previous simplified example, the 'this' keyword used
Simplified for example, I have two tables, groups and items . items ( id,
My simplified and contrived example is the following:- Lets say that I want to
This is a simplified example with modified variable names of what I want to
I have 3 django models (simplified for this example): class Fighter (models.Model): name =
This is a simplified example of what I am trying to achieve, I'm relatively
I have a django template which loops over many notes/comments. As a simplified example
Consider this simplified example: #include <list> typedef std::list<int> IntList; class KindaIntList { public: IntList::const_iterator

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.