5
A
答えて
6
VB.NETのための溶液:
このコードは@Hansアンパッサンのasnwerから取り出され、翻訳される:Winforms-How can I make MessageBox appear centered on MainForm?
Centered_MessageBox.vb
Imports System.Text
Imports System.Drawing
Imports System.Windows.Forms
Imports System.Runtime.InteropServices
Class Centered_MessageBox
Implements IDisposable
Private mTries As Integer = 0
Private mOwner As Form
Public Sub New(owner As Form)
mOwner = owner
owner.BeginInvoke(New MethodInvoker(AddressOf findDialog))
End Sub
Private Sub findDialog()
' Enumerate windows to find the message box
If mTries < 0 Then
Return
End If
Dim callback As New EnumThreadWndProc(AddressOf checkWindow)
If EnumThreadWindows(GetCurrentThreadId(), callback, IntPtr.Zero) Then
If System.Threading.Interlocked.Increment(mTries) < 10 Then
mOwner.BeginInvoke(New MethodInvoker(AddressOf findDialog))
End If
End If
End Sub
Private Function checkWindow(hWnd As IntPtr, lp As IntPtr) As Boolean
' Checks if <hWnd> is a dialog
Dim sb As New StringBuilder(260)
GetClassName(hWnd, sb, sb.Capacity)
If sb.ToString() <> "#32770" Then
Return True
End If
' Got it
Dim frmRect As New Rectangle(mOwner.Location, mOwner.Size)
Dim dlgRect As RECT
GetWindowRect(hWnd, dlgRect)
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)
Return False
End Function
Public Sub Dispose() Implements IDisposable.Dispose
mTries = -1
End Sub
' P/Invoke declarations
Private Delegate Function EnumThreadWndProc(hWnd As IntPtr, lp As IntPtr) As Boolean
<DllImport("user32.dll")> _
Private Shared Function EnumThreadWindows(tid As Integer, callback As EnumThreadWndProc, lp As IntPtr) As Boolean
End Function
<DllImport("kernel32.dll")> _
Private Shared Function GetCurrentThreadId() As Integer
End Function
<DllImport("user32.dll")> _
Private Shared Function GetClassName(hWnd As IntPtr, buffer As StringBuilder, buflen As Integer) As Integer
End Function
<DllImport("user32.dll")> _
Private Shared Function GetWindowRect(hWnd As IntPtr, ByRef rc As RECT) As Boolean
End Function
<DllImport("user32.dll")> _
Private Shared Function MoveWindow(hWnd As IntPtr, x As Integer, y As Integer, w As Integer, h As Integer, repaint As Boolean) As Boolean
End Function
Private Structure RECT
Public Left As Integer
Public Top As Integer
Public Right As Integer
Public Bottom As Integer
End Structure
End Class
使用法:
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
Using New Centered_MessageBox(Me)
MessageBox.Show("Test Text", "Test Title", MessageBoxButtons.OK)
End Using
End Sub
+0
[Telerik Code Converter](http://converter.telerik.com/)を使用して変換しました。 – mbomb007
1
悲しいことに、悲しいことに、MessageBox
を親に集中させる方法はありません。これはデフォルトで画面上に表示され、変更することはできません。
関連する問題
- 1. MVC3コントローラの中央にビューを表示
- 2. UISplitViewControllerの中央にMBProgressHUDを表示
- 3. asp.netにMessageBoxを表示するには?
- 4. MessageBoxを一度表示させる(タイマーの中のコード)
- 5. MessageBoxにXMLデータを表示/バインドする
- 6. CSSドロップダウンメニューの中央に表示
- 7. ASPのMessageBoxを表示
- 8. Javafxのペインの中央にProgressIndicatorを表示するには
- 9. ブートストラップモーダルの上に水平に中央のdivを表示する
- 10. GridBagLayoutがJTextAreaを表示せず、パネルを中央に表示
- 11. 別のフォームの中央に小さいフォームを作成する
- 12. xamarinフォームの中央にあるツールバーアイコン
- 13. 親の下にサブメニューを表示する(中央のドロップダウンメニュー)
- 14. 中央のウェブページの上にサイドメニューを表示する
- 15. divとスタイリングフォームの中央フォーム
- 16. CSS 3:中央からボタンを表示
- 17. MonodroidでMessageBoxを表示する方法
- 18. ページの中央にテキストを表示する - Vaadin
- 19. CSS divの子オブジェクトを中央に表示する方法は?
- 20. 画面の中央にポップアップメニューを表示する方法
- 21. ツールバーの中央にボタンを表示する方法は?
- 22. Android:フルスクリーンのプログレスバーを中央に表示する方法
- 23. matplotlib boxplotの中央線を非表示にする
- 24. 歪んだ四角形の中央にテキストボックスを表示する
- 25. angular-chart.jsドーナツチャート:グラフの中央にデータを表示する方法
- 26. フォーム外のdivの中央フォーム項目
- 27. デバイス画面の中央に常に表示する
- 28. ランタイム中の画面上の中央フォーム
- 29. 画面の中央に角度のあるUIモーダルを表示
- 30. MessageBoxが表示されずに非表示になる
[親フォームの中央MessageBox]の重複が可能です(http://stackoverflow.com/questions/1732443/center-messagebox-in-parent-form) – harriyott
その投稿の助言と情報をありがとう、今私は私の答えは重複しないように編集しました。 – ElektroStudios
http://stackoverflow.com/questions/2576156/winforms-how-can-i-make-messagebox-appear-centered-on-mainform –