关于C# MessageBox用法的问题是我们在编程过程中比较困扰我们的,那么如何解决这些相关的C# MessageBox用法中的修改问题呢?下面为你提供了一些小的思路。
对于C# MessageBox用法的问题有的细节可以参考以下两篇文章 ,完成了在中文系统上显示英文的对话框。希望能够解决你所遇到的相同的问题,算是一个思路的共享吧。
C# MessageBox用法相关文章:
主要使用技术,关键词包括:C#中使用钩子函数。
http://www.codeproject.com/cpp/dMsgBox.asp
How to change the MessageBox window
http://www.codeproject.com/cs/miscctrl/MessageBoxChk.asp
A "Don't show this again" checkbox for the .NET MessageBox
C# MessageBox用法实例:构造函数
- public MessageBoxInternal()
- {
- //
- // TODO: Add constructor logic here
- //
- m_cbt = new LocalCbtHook();
- m_cbt.WindowCreated +=
- newLocalCbtHook.CbtEventHandler(WndCreated);
- m_cbt.WindowDestroyed +=
- new LocalCbtHook.CbtEventHandler(WndDestroyed);
- m_cbt.WindowActivated +=
- new LocalCbtHook.CbtEventHandler(WndActivated);
- }
- private void WndCreated(object sender, CbtEventArgs e)
- {
- if (e.IsDialogWindow)
- {
- m_bInit = false;
- m_hwnd = e.Handle;
- }
- }
- private void WndDestroyed(object sender, CbtEventArgs e)
- {
- if (e.Handle == m_hwnd)
- {
- m_bInit = false;
- m_hwnd = IntPtr.Zero;
- //if(BST_CHECKED == (int)SendMessage(
- //m_hwndBtn,BM_GETCHECK,IntPtr.Zero,IntPtr.Zero))
- // m_bCheck = true;
- }
- }
- private void WndActivated(object sender, CbtEventArgs e)
- ...
C# MessageBox用法的一点体会就向你介绍到这里,希望对你了解和学习C# MessageBox用法有所帮助。
【编辑推荐】