views:

178

answers:

2

I have a need to use a ColorMap object in .NET Compact Framework but from what I can tell it is not available.

Need some ideas on how to best workaround this limitation.

A: 

it is discussed in msdn forum (it is not allowed for me to add links yet, but you can easily find it on the web) This class is not supported by the .net compact framework. Would suggest using manual recoloring instead or using Reflector to obtain a code of ColorMap from .net framework and use it your code.

A: 

The native IBitmapImage object does have a get/setpalette method, but I don't know if that's what you're looking for.

see: http://msdn.microsoft.com/en-us/library/aa911323(v=MSDN.10).aspx

Roy