I am currently working on a desktop C# WPF application where the goal is to make it look and feel like a "real"
Windows Store App.
I want to add an appbar
that should be shown when the user swipes up from the bottom. To do this in a normal app you just position your finger outside the screen area, and swipe up.
But if I do that in a fullscreen WPF program I don't receive any TouchDown
or TouchMove
events - probably because the finger is already down when entering the actual screen area.
I have tried with the Manipulation framework also, but same result here. Even when I hook directly into the message queue using WndProc
or other hooks I get no events at all.
The funny thing is that I can see the "touch cursor"
move around the screen, so at least something in the underlying framework is notified.
Does anyone have an idea how to do this?
p.s. It is not an option for me just to use a windows store app instead, because of hardware connectivity issues ;-)