此实用工具显示所有导出的函数列表和他们指定的DLL文件的虚拟内存地址。您可以轻松地复制所需函数的内存地址,粘贴到调试器,并为这个内存地址断点。当这种功能被调用时,调试程序将停止在这一职能的开始。 For example: If you want to break each time that a message box is going to be displayed, simply put breakpoints on the memory addresses of message-box
在code-behind代码中写入: //设置为默认的消息窗口 popupWin.ActionType=PopupWidow.Web.PopupAction.MessageWindow; //设置窗口的标题,消息文字 popupWin.Title="This is popup"; popupWin.Message="<i>Message</i> displayed in popup& quot;; popupWin.Text="Text to show in new window..";