Virtual listview

  • Thread starter Thread starter PGP
  • Start date Start date
P

PGP

What is the best option to get virtual listview functionality in CF? Are 3rd
party controls the only option here?
 
What is the best option to get virtual listview functionality in CF? Are 3rd
party controls the only option here?

Haven't tried this myself, but I'd think it should be possible to make
it work with the native listview control as long as you're using CF
2.0 or later. You should be able to do the appropriate WndProc
manipulations using CF2.0's interop functions. I suggest looking at
the OpenNETCF Smart Device Framework's Control2 class for some help
with that.

Here's a couple of related implementations for the full framework that
might be good references. One just extends the built-in ListView
class, the other simply instantiates the native control and wraps it.
These could probably be modified to work with the Compact Framework.

http://www.koders.com/csharp/fid1E0341DCC5257B0857A17B1D3C9E9BCEE31E3CA0.aspx?s=listview#L38
http://www.freeweb.hu/noiseehc/VirtualListView.cs
 
What is the best option to get virtual listview functionality in CF? Are 3rd
party controls the only option here?

Haven't tried this myself, but I'd think it should be possible to make
it work with the native listview control as long as you're using CF
2.0 or later. You should be able to do the appropriate WndProc
manipulations using CF2.0's interop functions. I suggest looking at
the OpenNETCF Smart Device Framework's Control2 class for some help
with that.

Here's a couple of related implementations for the full framework that
might be good references. One just extends the built-in ListView
class, the other simply instantiates the native control and wraps it.
These could probably be modified to work with the Compact Framework.

http://www.koders.com/csharp/fid1E0341DCC5257B0857A17B1D3C9E9BCEE31E3CA0.aspx?s=listview#L38
http://www.freeweb.hu/noiseehc/VirtualListView.cs
 
Back
Top