vote up 1 vote down star

I am using Silverlight to develop an application that we anticipate will be used heavily on touch screen monitors in the healthcare setting. I am finding that simple controls like Button, or even simpler primitive controls that I've written myself to capture mouse events, are very flaky and unresponsive on an HP Touchsmart. Many times clicks do not even register, but the behavior is entirely unpredictable.

Any idea why a plain old Silverlight button is hard to click by touch on an HP Touchsmart?

flag

55% accept rate
I think you'd be better off using WPF, honestly - maybe go the XBAP route instead of Silverlight? Which version of Silverlight, by the way? It may be better in 3.0. – unforgiven3 Jun 22 at 20:16
You could try comparing the responsiveness to a WPF app to see how much of the problem is Silverlight. What OS are you running? – James Cadd Jun 22 at 21:22
This is Vista 64. We have a bunch of reasons for wanting to be web-based right now, so Silverlight it is. It seems to be the hardware itself is just somewhat unresponsive. It registers touches slower than clicks register on a regular PC. Sometimes it seems to just miss a touch altogether. – Pete Jun 23 at 20:42
After looking into this some more, it appears that with a primitive control, MouseDown doesn't always fire, but MouseUp always does. This causes Button elements not to raise Click (MouseDown and MouseUp both need to happen in the same element). This is problematic for situations like drag and drop, where you really want to know where mousedown vs. mouseup occurred. I wonder why mousedown is iffy with silverlight controls on the touchsmart? – Pete Jul 9 at 16:10

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.