vote up 1 vote down star
2

Hello everyone,

I am wondering whether WPF on .Net 3.5 supports touch or multi-touch for laptop? Appreciate if there are some cool Demos to show the effect.

I am using VSTS2008 + C#.

thanks in advance, George

flag

42% accept rate
1  
For multitouch I am guessing you need to look at the Surface SDK. I dont think there are too many devices in the world at the moment that support multi touch (though I maybe wrong). – Klerk Aug 10 at 13:39
Thanks Klerk! For surface, is it a special device? Or just normal laptop PC + some special SDK? – George2 Aug 10 at 13:48
1  
microsoft.com/surface/Default.aspx – Klerk Aug 10 at 13:56

3 Answers

vote up 2 vote down

Not natively, but check out the Windows 7 Code Pack, which brings 7-based features to .NET developers. This is code from MS, btw, not a 3rd party library.

It includes multitouch code, but I don't know exactly how easy it is to use in a WPF application.

Relevant links:
http://blogs.msdn.com/charlie/archive/2009/08/07/windows-7-code-pack-v-1-0-released.aspx
http://www.microsoft.com/downloads/details.aspx?displaylang=en&FamilyID=1c333f06-fadb-4d93-9c80-402621c600e7

link|flag
Thanks Will, I am just wondering the effect of multi-touch or touch. Are thre any Demos developed on Windows by WPF? – George2 Aug 10 at 12:53
vote up 1 vote down

It's not really WPF's responsibility to support touch-devices, but the O/S. The O/S simply delegates the events of mouseDown == fingerTouchedScreen to WPF (not a 100% accurate statement, but good enough :) ).

If you want to develop WPF for touchscreen-devices, you really need to look at your UI design instead of what's supported and what's not.

This post has a nice answer for that.

Basically, you work with the same events as you'd do with your standard smith'n'wesson point'n'click devices :)

link|flag
Thanks Meeh, I am just wondering the effect of multi-touch or touch. Are thre any Demos developed on Windows by WPF? – George2 Aug 10 at 12:54
mouseDown != fingerTouchedScreen – TandemAdam Nov 12 at 21:25
vote up 0 vote down

There's some great sample code in the "Windows 7 Training Kit For Developers". Sure you'll need Windows 7, but it's totally worth it! http://www.microsoft.com/downloads/details.aspx?displaylang=en&FamilyID=1c333f06-fadb-4d93-9c80-402621c600e7

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.