vote up 1 vote down star

I am porting .NET Framework component to .NET Compact Framework. Component has ImageList in it. This component implements custom CodeDomSerializer. The constructor of the custom CodeDomSerializer contains following code for ImageList code serialization.

TypeDescriptor.AddAttributes(typeof(ImageList), new DesignerSerializerAttribute(typeof(MyComponentCodeDomSerializer), typeof(CodeDomSerializer)));

But due to some reason, .NET Compact Framework doesn't use custom ImageList CodeDomSerializer (It works in .NET Framework.) It uses default CodeDomSerializer. Any ideas how can I attach ImageList custom CodeDomSerializer?

flag

67% accept rate
Custom CodeDomSerializer creates an instance of itself and adds attributes to TypeDescriptor. But it doesn't use DesignerSerializer (MyComponentCodeDomSerializer) to serializer ImageList. Compact Framework uses default serializer for ImageList. I am not able to figure out why designer doesn't use MyComponentCodeDomSerializer. – rxm0203 May 30 at 14:48
I am up-voting this because it shows how much I still need to learn about .NET CF – JasonRShaver May 31 at 2:52

2 Answers

vote up 0 vote down

The Compact Framework does not support the CodeDomSerializer class, so therefore your code is not working. What are you trying to achieve with the custom CodeDomSerializer?

link|flag
I am trying to use CodeDomSerializer class for .NET Compact Framework component designer. My component contains multiple image lists. When you add a component to .NET Compact Framework form, it gives an option to select image list. I want to change the default code serialization on form for an image list. Do you think it is possible in .NET Compact Framework? – rxm0203 Jun 5 at 19:56
vote up 0 vote down

I found out that there is so many differences between CF and WF designers, that it is impossible to save the same form on both designers. Most funny thing is, that if a form is not opened using a platform designer, it can be build anyway. So I have 2 projects,one for win, one for CE, default project is win and forms are designed using CE designer. Strange, but it works...

link|flag

Your Answer

Get an OpenID
or

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