[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

microsoft.public.dotnet.framework.aspnet.buildingcontrols

Weird problem with design attributes

GeezerButler

5/13/2007 6:03:00 PM

Hi,
I have a user control declared like:
public class MyUserControl: UserControl, INamingContainer
{
.....
}

I am applying design time attributes to some properties of my
UserControl.
For example:
[Category("Appearance"),
TypeConverter(typeof(StringArrayConverter))]
[Description("Some description")]
public string[] MyProperty1
{
.....
}

For some reason, the Category is being applied correctly to all
properties but i can't see the ArrayConverter or the description.

Has anyone faced this problem? Any help would be appreciated.