创建动态控件并使用 Values/Brackets 添加句柄
似乎添加一个按钮 Dim myButton as New Button
然后将Handler 添加到 mySub("lol", 255)
是不可能的。
其中 mySub
是 Shared Sub MySub(byRef myString as string, myInteger as Integer)
所以: addHandler myButton.click, addressOf mySub("lol", 255)< /code> - 返回一个错误,指出它不适用于括号或其他内容。
我以某种方式明白为什么这可能不可能,所以我正在寻找解决这个问题的方法。
请帮忙_jakeCake
it seems that adding for example a button Dim myButton as New Button
and then addHandler to mySub("lol", 255)
is not possible.
Where mySub
is Shared Sub MySub(byRef myString as string, myInteger as Integer)
So: addHandler myButton.click, addressOf mySub("lol", 255)
- returns an error saying it does not work with parentheses or whatever.
I somehow see why this might not be possible, so I'm looking for a work-around on this problem.
Please help _jakeCake
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
首先,AddHandler 的语法是:
其次,事件处理程序过程的签名必须与事件的签名匹配,如下所示:
First of all the syntax for AddHandler would be:
Secondly the signature of the eventhandler procedure must match the signature of the event like so:
也许您可以在添加事件时考虑使用 lambda 表达式。在 VB.NET 中使用 lambda 时,该函数必须返回一个值,并且不支持多行语句。
Maybe you could look into using a lambda expression when you add the event. When using lambda's in VB.NET the function must return a value and does not support multi-line statements.