从XML动态加载新按钮

时间:2011-08-17 04:52:04

标签: c# xml dynamic button

我正在尝试为XML Doc中的每个XML元素加载一个新按钮。我需要为文档中的每个xml节点创建一个新的按钮实例。下面的代码可以使新按钮运行,但按钮有一个名为“money”的自定义属性,不断被覆盖。所以我试图找到一些动态命名按钮的方法,E.G。按钮(动态名称)=新按钮();

int x = 0;
int y = 0;
XmlDocument xmlDoc= new XmlDocument(); //* create an xml document object.
xmlDoc.Load("XML.xml");
XmlNodeList elemList = xmlDoc.GetElementsByTagName("item");
for (int i = 0; i < elemList.Count; i++)
{
    string money = elemList[i].Attributes["www"].Value;
    string itemName = elemList[i].Attributes["money"].Value;

    button LB = new button();
    LB.Text = money + itemName;
    LB.money = itemName;
    LB.Location = new System.Drawing.Point(x, y);
    x += 25;
    y += 25;
    LB.Click += new EventHandler(item_click);
    this.Controls.Add(LB);
}

1 个答案:

答案 0 :(得分:0)

button LB = new button();
LB.Text = money + itemName;
string tmp_itemName = itemName;
LB.money = tmp_itemName;

只要.money不是静态的......