Hello,
at the moment I create a usercontrol. I wan't to have for that a text property. But I don't have any idea, why my solution doesn't work...

Code:
[
            Category("Appearance"),
            Description("The text associated with the control.")
        ]
        public string Text
        {
            get { return text; }
            set { text = value; }
        }
Regards
Hansjörg