Stopping touch gesture of an active pane penetrating and activating object behind it in Visual Studio 2019 and dotnetbrowser

Iman Risardi 1 Reputation point
2021-02-19T05:29:50.553+00:00

First of all, I am a project manager in developing a browser for a specific use at client's corporation. My experience is in network infrastructure however I know a tiny bit programming and what it can do due to extra study for this project. It is developed with Teamdev's dotnetbrowser for browsing in Visual Studio 2019 for the rest of the requirement and must run in touch screen.

Here is what beats us, hopefully someone else might run into this issue and can offer a little way out. Our browser is based on (according to our overseas programmer) multiple panes. There are at least 5 panes with 2 is hidden and showing up based on touch/click event. One of the hidden and showing pane based on a touch event is navigational menu pane. The issue with menu pane is that everytime the icon in the menu pane that was located in front of the main pane is touched, it also activates the object behind it. As an example, if the main pane is currently showing a website then the menu pane which consists only Back, Forward and Home icons is pressed, it also create either an impression in the website at the back being pressed or sometimes it activates the link in the area as if the link at the back pane is at the front/in focus and clicked. Also, the main requirement of this project is to use the entire touch screen area for browsing therefore the menu has to be hidden and showing pretty much leave us a little room to develop anything else taking the some screen space.

Would anyone have an idea to stop it from happening so the click at the front pane does not penetrate or activate whatever object or link behind it. We have not tried any tricks yet because we went through MS docs but couldn't see it possible to alter the circumstances.

I look forward to your suggestions.

Regards,

risardi

Windows Presentation Foundation
Windows Presentation Foundation
A part of the .NET Framework that provides a unified programming model for building line-of-business desktop applications on Windows.
2,710 questions
C#
C#
An object-oriented and type-safe programming language that has its roots in the C family of languages and includes support for component-oriented programming.
10,648 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Vahid Ghafarpour 20,500 Reputation points
    2023-08-01T19:07:50.3033333+00:00

    Review the event handling order in your application. Ensure that the touch events in the navigational menu pane are being consumed and handled correctly without propagating to elements in the main pane. In most cases, you would want to handle touch events on the topmost pane (navigational menu) before allowing them to propagate to the underlying panes (main pane).

    0 comments No comments