Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Compact Framework : any Finger Friendly GUI?

i m developing a little tool on my Pocket PC using WM6 SDK but i would like to implement a finger friendly user interface (iphone-like). So i m looking for a free .NET framework that offers the possibility to easily integrate a finger friendly interface for Windows Mobile 6 Pro .

Any ideas ?

EDIT : Finger friendly means big icons, big buttons , scrollable screens with a simple touch of the thumb... Because the Winforms in Compact framework are made for the stylus, not fingers !!

like image 365
guigui42 Avatar asked Sep 24 '08 15:09

guigui42


1 Answers

I know of no such interface API.

I would code such an interface from scratch, overriding Paint and mouse events. If you need more fancy drawing tools that compact framework provides, you should look for pinvoke to access GDI+.

like image 127
Martin Liesén Avatar answered Sep 28 '22 07:09

Martin Liesén