views:

52

answers:

1

Visual studio allows you to design component visually. For example, you are designing a windows form. You change its property in the properties editor. The IDE will generate the code in a partial class in xx.designer.cs file. We can customize this behavior by changing the UITypeEditor for the properties.

The question now is , Can we extend this code generation behavior? for example, we change a setting in property window, and then the IDE will add an .net Attribute to the class?

Thanks

A: 

To my knowledge, that is not possible. Sorry. Such a thing IS possible with Eclipse, however, because it's open source.

McWafflestix