Initialize the Attributes property of a WebControl

2020-07-18 05:02发布

问题:

I want to initialize WebControl objects, inline, but for some fields this is a little bit tricky. For instance when I try to initialize the Attributes property of a TextBox object like this:

using System.Web.UI.WebControls;
Panel panel = new Panel() { Controls = { new TextBox() { Attributes = { { "key", "value" } } } } };

I get the error:

Cannot initialize type 'AttributeCollection' with a collection initializer because it does not implement 'System.Collections.IEnumerable'

Any idea how could inline initialization work in this case ?

回答1:

You can do this but if you use C#6. This is called index initialization so try the following code but as I said this should works fine in Visual Studio 2015 and C#6:

Panel panel = new Panel
{
    Controls =
    {
        new TextBox
        {
            Attributes =
            {
                ["readonly"] = "true",
                ["value"] = "Hi"
            }
        }
    }
}; 

The old collection initializers (Prior to C#6) only works with types that implement IEnumerable<T> and have an Add method. But now any type with an indexer will allow initialization via this syntax.