Resources

https://learn.microsoft.com/en-us/answers/questions/619006/how-can-i-detect-the-controls-under-a-point-in-uwp

Example code

Point Point1 = new Point((799 - GenerateNewTouchX), (1279 - GenerateNewTouchY));
	var elements = VisualTreeHelper.FindElementsInHostCoordinates(Point1, OurCanvas, false);  //includeAllElements true = include all elements that intersect even if invisible, false = only visible, hit-testable elements
	foreach (var item in elements)
	{
		//System.Diagnostics.Debug.WriteLine(item.GetType());						
		string ElementType = item.GetType().ToString();
		System.Diagnostics.Debug.WriteLine(ElementType);

		FrameworkElement FrameworkElement1 = item as FrameworkElement;
		if (FrameworkElement1 != null)
			System.Diagnostics.Debug.WriteLine("ElementName: " + FrameworkElement1.Name);

		if (ElementType == "Windows.UI.Xaml.Controls.ComboBox")
		{
			//FrameworkElement FrameworkElement1 = item as FrameworkElement; 
			if (FrameworkElement1 != null)
			{
				System.Diagnostics.Debug.WriteLine("ElementName: " + FrameworkElement1.Name);


			}
		}
	}
USEFUL?
We benefit hugely from resources on the web so we decided we should try and give back some of our knowledge and resources to the community by opening up many of our company’s internal notes and libraries through mini sites like this. We hope you find the site helpful.
Please feel free to comment if you can add help to this page or point out issues and solutions you have found, but please note that we do not provide support on this site. If you need help with a problem please use one of the many online forums.

Comments

Your email address will not be published. Required fields are marked *