윈폼(Winform)
C# 부모 윈도우의 중앙에 메세지박스 띄우기
부모 윈도우의 중앙에 MessageBox를 띄운다. MessageBoxEx.cs using System; using System.Windows.Forms; using System.Text; using System.Drawing; using System.Runtime.InteropServices; namespace SrcTree { class MessageBoxEx { private static IWin32Window _owner; private static HookProc _hookProc; private static IntPtr _hHook; public static DialogResult Show(string text) { Initialize(); return MessageBox.Show(text);..
2021. 11. 18. 00:26
최근댓글