是否可以初始化控件的列表标记中的属性?

发布于 2024-07-21 04:26:58 字数 586 浏览 7 评论 0原文

假设我们有以下内容:

public enum RenderBehaviors
{
    A,
    B,
    C,
}

public class MyControl : Control
{
    public List<RenderBehaviors> Behaviors { get; set; }

    protected override void Render(HtmlTextWriter writer)
    {
        // output different markup based on behaviors that are set
    }
}

是否可以在 ASPX/ASCX 标记中初始化 Behaviours 属性? 即:

<ns:MyControl runat="server" ID="ctl1" Behaviors="A,B,C" />

在这种情况下,子类化不是一个选项(行为的实际意图与此示例略有不同)。 当我尝试以这种方式初始化属性时,WebForms 会生成解析器错误。 同样的问题也适用于其他列表类型(int、字符串)。

Let's say we have the following:

public enum RenderBehaviors
{
    A,
    B,
    C,
}

public class MyControl : Control
{
    public List<RenderBehaviors> Behaviors { get; set; }

    protected override void Render(HtmlTextWriter writer)
    {
        // output different markup based on behaviors that are set
    }
}

Is it possible to initialize the Behaviors property in the ASPX/ASCX markup? i.e.:

<ns:MyControl runat="server" ID="ctl1" Behaviors="A,B,C" />

Subclassing is not an option in this case (the actual intent of the Behaviors is slightly different than this example). WebForms generates a parser error when I try to initialize the property in this way. The same question could be applied to other List types (int, strings).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

黑凤梨 2024-07-28 04:26:58

经过进一步研究,我发现 WebForms 确实使用了 TypeConverter(如果它能找到的话)。 类型或属性需要正确修饰,详见 相关问题

我最终实现了类似的东西:

public class MyControl : Control
{
    private readonly HashSet<RenderBehaviors> coll = new HashSet<RenderBehaviors>();

    public IEnumerable<RenderBehaviors> Behaviors { get { return coll; } }

    public string BehaviorsList
    {
        get { return string.Join(',', coll.Select(b => b.ToString()).ToArray()); }
        set
        {
            coll.Clear();
            foreach (var b in value.Split(',')
                .Select(s => (RenderBehvaior)Enum.Parse(typeof(RenderBehavior), s)))
            {
                coll.Add(b);
            }
        }
    }
}

After researching this further, I found that WebForms does use a TypeConverter if it can find it. The type or the property needs to be decorated properly, as detailed in this related question.

I wound up implementing something similar to this:

public class MyControl : Control
{
    private readonly HashSet<RenderBehaviors> coll = new HashSet<RenderBehaviors>();

    public IEnumerable<RenderBehaviors> Behaviors { get { return coll; } }

    public string BehaviorsList
    {
        get { return string.Join(',', coll.Select(b => b.ToString()).ToArray()); }
        set
        {
            coll.Clear();
            foreach (var b in value.Split(',')
                .Select(s => (RenderBehvaior)Enum.Parse(typeof(RenderBehavior), s)))
            {
                coll.Add(b);
            }
        }
    }
}
無處可尋 2024-07-28 04:26:58

使用标记时,您自己对字符串属性的建议是唯一的解决方案。

Your own suggestion of a string property is the only solution when working with markup.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文