C# dynamically add event handler

后端 未结 5 796
感动是毒
感动是毒 2020-12-17 08:40

Hi i have a simple question. here is my code:

        XmlDocument xmlData = new XmlDocument();
        xmlData.Load(\"xml.xml\");

        /* Load announceme         


        
5条回答
  •  一生所求
    2020-12-17 09:18

    are you asking for the signature for the click event? if you're working in visual studio, you should be able to type

    item.Click+= tab tab

    and it'll generate something for you

提交回复
热议问题