views:

281

answers:

2

Hi,

is there way (unmanaged maybe?) how to do the ownerdraw functionality on ListBox/ListView/TreeView controls in Compact Framework? Or is there some another controls (free? paid?) with similar functionaly (kinetic scroll for example)?

Thanks

+3  A: 

It's far from straightforward to do owner or custom drawing int he CF. Christian Helle has an example for the ListView in his blog here.

ctacke
This looks realy good, I'll try it. Thanks
TcKs
+1  A: 

1) I filed a request to Microsoft to add this feature.

2) You can do this using the ListBox2 class in the Smart Device Framework

3) You can derive from ListControl and add this logic yourself (I did this by looking at the source code of the .NET Framework Version of ListBox)

hjb417
2) This class looks goog, but don't support kinetic scroll, which I need. 3) I'll try it with combination with article posted by @ctacke. Thanks
TcKs