在vb.net中LockWindowUpdate不使用dll?
我是从 vb 到 vb.net 的 API 转换的初学者。在 vb6 中,他们使用 user32 DLL。在 Vb.Net 中,我需要在没有“User32.dll”函数的情况下调用 LockWindowUpdate Function() 。
有没有办法在 vb.net 中不使用任何 API 调用来锁定窗口状态?
如果有人知道等效项,请让我展示代码。该代码应该在 .net 框架中使用。
VB
Private Declare Function LockWindowUpdate Lib "user32"
(ByVal hWnd As Long) As Long
LockWindowUpdate Form1.hWnd
I'm beginner for API Conversion from vb to vb.net.In vb6 they using user32 DLL.In Vb.Net i need to call LockWindowUpdate Function() without that "User32.dll" function.
Is there any way to Lock window state without using any API Calls in vb.net..?
If equivalent is any one know let me show that codes.that codes should be work with in .net framework.
VB
Private Declare Function LockWindowUpdate Lib "user32"
(ByVal hWnd As Long) As Long
LockWindowUpdate Form1.hWnd
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果没有 pinvoke 声明,则无法调用该函数。不过,您可以使用正确的。 VB6 声明与 VB.NET 声明高度不兼容,请避免使用它们,并始终咨询 pinvoke.net 以获取正确的声明。
实际使用这个函数几乎总是不正确,但这是另一个问题。
You cannot call that function without a pinvoke declaration. You can however use the correct one. The VB6 declarations are highly incompatible with the VB.NET declarations, avoid them and always consult pinvoke.net for the proper declaration.
Actually using this function is almost always incorrect, but that's another problem.