ControlBuilder实现的通用DropDown丢失了所有属性

时间:2010-09-10 01:06:50

标签: c# asp.net controls generics

这里我有一个使用ControlBuilder的代码,使DropDown控件通用。

[ControlBuilder(typeof(EnumDropDownControlBuilder))]
public class EnumDropDown : DropDownList {
    private string _enumType;
    private bool _allowEmpty;

    public string EnumType {
        get { return _EnumType; }
        set { _EnumType = value; }
    }

    public bool AllowEmpty {
        get { return _allowEmpty; }
        set { _allowEmpty= value; }
    }
}

public class EnumDropDown<T> : EnumDropDown where T : struct {
    public EnumDropDown() {
        this.Items.Clear();
        if (AllowEmpty) this.Items.Add(new ListItem("", "__EMPTY__"));
        foreach (string name in Enum.GetNames(typeof(T))) {
            Items.Add(name);
        }
    }

    public new T SelectedValue {
        get {
            if (IsEmpty) throw new NullReferenceException();
            return (T)Enum.Parse(typeof(T), base.SelectedValue, true);
        }
        set { base.SelectedValue = Enum.GetName(typeof(T), value); }
    }

    public bool IsEmpty {
        get {
            return base.SelectedValue == "__EMPTY__";
        }
        set { base.SelectedValue = Enum.GetName(typeof(T), value); }
    }
}

public class EnumDropDownControlBuilder : ControlBuilder {
    public override void Init(TemplateParser parser, ControlBuilder parentBuilder, Type type, string tagName, string id, IDictionary attribs) {

        string enumTypeName = (string)attribs["EnumType"];
        Type enumType = Type.GetType(enumTypeName);
        if (enumType == null) {
            throw new Exception(string.Format("{0} cannot be found or is not an enumeration", enumTypeName));
        }
        Type dropDownType = typeof(EnumDropDown<>).MakeGenericType(enumType);
        base.Init(parser, parentBuilder, dropDownType, tagName, id, attribs);
    }
}

对不起,该程序太长,无法愉快阅读。

问题是,虽然我在类 EnumDropDown 中定义了属性 EnumType AllowEmpty 。由于ControlBuilder创建的真实对象是 EnumDropDown ,因此 EnumType AllowEmpty 的值始终为 null 控件对象中的false 。 .aspx中设置的所有属性都将丢失!

我可以在ControlBuilder中读取源标记的属性值。 但我不知道如何将属性复制到通用控制对象。

任何人都可以给我一些提示吗?

1 个答案:

答案 0 :(得分:1)

这太愚蠢了,我试图在construtor public EnumDropDown()中读取属性的值。当然,由于对象仍在构建,因此不会设置属性。

我将构造函数public EnumDropDown()重命名为方法public void OnInit(EventArgs e),并解决了所有问题。