只是想知道是否有可能不拆分以下步骤......
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')");
提前致谢。
答案 0 :(得分:1)
您可以从Button开车并将其添加到构造函数中:
class MyButton: Button
{
MyButton(MyAttributes atr)
{
for each (elm in atr)
{
base.Attributes.Add(elm.Key, elm.Value);
}
}
}