I want to have a property on my custom control that is an interface type. For example:
[
ToolboxData("<{0}:MyTextBox runat=server></{0}:MyTextBox"),
ParseChildren(true, "Validation")
]
class MyTextBox : WebControl
{
[
Category("Behavior"),
Description("The validation to use"),
DesignerSerializationVisibility(DesignerSerializationVisibility.Content),
PersistenceMode(PersistenceMode.InnerDefaultProperty)
]
public IValidation Validation { get; set; }
}
Then when I go to use my control in a web form I would like to be able to do:
<my:MyTextBox ID="txt" runat="server">
<my:FancyValidator />
</my:MyTextBox>
That way I will be able to define one class that could use any number of validators. When I try and do this now, I end up with an error saying:
Type 'IValidator' does not have a public property named 'FancyValidator'
What do I need to do to make this work?
Thanks!