Skip to content

mbendtsen/touch_issue_net_core

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Description

This is a repros project to demonstrate an issue with touch and .NET Core. This requires a touch enabled device.

The issue is that if a splash screen has been shown in another thread, then touch is not working in the main window. This works in .NET Framework, but not .NET Core 3.1.

How to use

.NET Core

  1. Open project file
  2. Set target framework to netcore3.1
  3. Build and run
  4. Touch/tap the white area.
  • Expected: Two events should be shown in the black box, PreviewMouseDown and PreviewTouchDown. Touch scrolling does work.
  • Actual: One event is shown, PreviewMouseDown. Touch scrolling does not work

.NET Framework.

  1. Open project file
  2. Set target framework to net462
  3. Build and run
  4. Touch/tap the white area.
  • Expected: Two events should be shown in the black box, PreviewMouseDown and PreviewTouchDown. Touch scrolling does work.
  • Actual: Two event is shown, PreviewMouseDown and PreviewTouchDown. Touch scrolling works.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages