tags:

views:

68

answers:

2

This would ideally be done in C# and is intended for larger form factors (NOT mobiles.).

I'm a novice in this area, but would users suggest Silverlight (Can it process touch screens?) or WPF or are other technologies better?

Ideally this would involve users tracing shapes with their fingers or a stylus, and the system automatically marking it.

My background is .net/c# web development. Thanks

+1  A: 

See this MSDN article on Touch Guidelines.

Anton Gogolev
A: 

Make sure that the windows controls are big enough for a finger tip and is readable. Also, ensure that there is a easy way to pop up a right-click context menu, on the pocket pc for example, if you hold down the stylus on the touch screen, a dancing circles appear in formation, then a popup menu appears, the same could be said for accessing menu options using big fonts (96dpi is the normal standard font size).

Other than that, don't do anything fanciful to the screen layout, i.e. custom colors etc, as you could end up confusing people with non-standard ways of interacting. Keep it plain and simple, grey buttons etc, this is more of common sense that needs to be applied here and is the same across the board.

Hope this helps, Best regards, Tom.

tommieb75