表单需要 IntPtr (VB.Net)
我需要表单的 intPtr 。 Control.FromHandle(control) 为我提供了来自句柄的控件,但我需要相反的操作——从控件中获取句柄。 我该怎么做呢?
I need the intPtr for a form. Control.FromHandle(control) gives me the control from a handle, but I need the opposite--get the handle from a control. How do I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试
注意:这仅在创建控件的句柄后才起作用。 在创建控件和渲染到一定程度之间有一个时间窗口,在该时间窗口中可能返回 IntPtr.Zero
Try
Note: This will only work after the Handle for the control is created. There is a window of time in between when you create a control and when it is rendered to some degree where this may return IntPtr.Zero
我必须不同意 JaredPar 的观点:如果句柄是,则 Handle 属性的 get 访问器调用 CreateHandle尚未创建(您可以使用 Reflector 检查)。 意识到这一点很重要,因为在某些情况下可能会产生意想不到的后果
I have to disagree with JaredPar on this : the get accessor of the Handle property calls CreateHandle if the handle is not yet created (you can check with Reflector). It's important to be aware of that because in some cases it could have unexpected consequences