Bravax
Bravax

Reputation: 10493

What are some good guides to touch screen programming?

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

Upvotes: 1

Views: 804

Answers (2)

t0mm13b
t0mm13b

Reputation: 34592

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.

Upvotes: 0

Anton Gogolev
Anton Gogolev

Reputation: 115809

See this MSDN article on Touch Guidelines.

Upvotes: 1

Related Questions