-1

只是想知道是否可以不拆分以下步骤......

Button b = new Button()
{
    // You can access Attributes here, but only get, not set.
    ID = "btnExample",
    Text = "Click Me"
};

b.Attributes.Add("onclick", "alert('hello, world')");

提前致谢。

4

1 回答 1

1

您可以从 Button 驱动并将其添加到构造函数中:

class MyButton: Button
{
    MyButton(MyAttributes atr)
    {
       for each (elm in atr)
       {
          base.Attributes.Add(elm.Key, elm.Value);
       }
    }
}
于 2012-10-16T13:47:52.290 回答