vb.net – 显示以表单为中心的MessageBox

前端之家收集整理的这篇文章主要介绍了vb.net – 显示以表单为中心的MessageBox前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有一种方法可以使MessageBox居中而不进行子类化或挂钩?

我正在寻找VB.NET代码.

VB.NET的解决方案:

代码取自@Hans Passant:Winforms-How can I make MessageBox appear centered on MainForm?的asnwer

Centered_MessageBox.vb

  1. Imports System.Text
  2. Imports System.Drawing
  3. Imports System.Windows.Forms
  4. Imports System.Runtime.InteropServices
  5.  
  6. Class Centered_MessageBox
  7. Implements IDisposable
  8. Private mTries As Integer = 0
  9. Private mOwner As Form
  10.  
  11. Public Sub New(owner As Form)
  12. mOwner = owner
  13. owner.BeginInvoke(New MethodInvoker(AddressOf findDialog))
  14. End Sub
  15.  
  16. Private Sub findDialog()
  17. ' Enumerate windows to find the message Box
  18. If mTries < 0 Then
  19. Return
  20. End If
  21. Dim callback As New EnumThreadWndProc(AddressOf checkWindow)
  22. If EnumThreadWindows(GetCurrentThreadId(),callback,IntPtr.Zero) Then
  23. If System.Threading.Interlocked.Increment(mTries) < 10 Then
  24. mOwner.BeginInvoke(New MethodInvoker(AddressOf findDialog))
  25. End If
  26. End If
  27. End Sub
  28. Private Function checkWindow(hWnd As IntPtr,lp As IntPtr) As Boolean
  29. ' Checks if <hWnd> is a dialog
  30. Dim sb As New StringBuilder(260)
  31. GetClassName(hWnd,sb,sb.Capacity)
  32. If sb.ToString() <> "#32770" Then
  33. Return True
  34. End If
  35. ' Got it
  36. Dim frmRect As New Rectangle(mOwner.Location,mOwner.Size)
  37. Dim dlgRect As RECT
  38. GetWindowRect(hWnd,dlgRect)
  39. MoveWindow(hWnd,frmRect.Left + (frmRect.Width - dlgRect.Right + dlgRect.Left) \ 2,frmRect.Top + (frmRect.Height - dlgRect.Bottom + dlgRect.Top) \ 2,dlgRect.Right - dlgRect.Left,dlgRect.Bottom - dlgRect.Top,True)
  40. Return False
  41. End Function
  42. Public Sub Dispose() Implements IDisposable.Dispose
  43. mTries = -1
  44. End Sub
  45.  
  46. ' P/Invoke declarations
  47. Private Delegate Function EnumThreadWndProc(hWnd As IntPtr,lp As IntPtr) As Boolean
  48. <DllImport("user32.dll")> _
  49. Private Shared Function EnumThreadWindows(tid As Integer,callback As EnumThreadWndProc,lp As IntPtr) As Boolean
  50. End Function
  51. <DllImport("kernel32.dll")> _
  52. Private Shared Function GetCurrentThreadId() As Integer
  53. End Function
  54. <DllImport("user32.dll")> _
  55. Private Shared Function GetClassName(hWnd As IntPtr,buffer As StringBuilder,buflen As Integer) As Integer
  56. End Function
  57. <DllImport("user32.dll")> _
  58. Private Shared Function GetWindowRect(hWnd As IntPtr,ByRef rc As RECT) As Boolean
  59. End Function
  60. <DllImport("user32.dll")> _
  61. Private Shared Function MoveWindow(hWnd As IntPtr,x As Integer,y As Integer,w As Integer,h As Integer,repaint As Boolean) As Boolean
  62. End Function
  63. Private Structure RECT
  64. Public Left As Integer
  65. Public Top As Integer
  66. Public Right As Integer
  67. Public Bottom As Integer
  68. End Structure
  69. End Class

Usage:

  1. Private Sub Button1_Click(sender As Object,e As EventArgs) Handles Button1.Click
  2. Using New Centered_MessageBox(Me)
  3. MessageBox.Show("Test Text","Test Title",MessageBoxButtons.OK)
  4. End Using
  5. End Sub

猜你在找的VB相关文章