首页 > 编程 > C# > 正文

在C#程序中对MessageBox进行定位的方法

2019-10-29 21:41:25
字体:
来源:转载
供稿:网友

这篇文章主要介绍了在C#程序中对MessageBox进行定位的方法,针对图形化界面进行调试,需要的朋友可以参考下

在 C# 中没有提供方法用来对 MessageBox 进行定位,但是通过 C++ 你可以查找窗口并移动它们,本文讲述如何在 C# 中对 MessageBox 进行定位。

首先需在代码上引入所需名字空间:

 

 
  1. using System.Runtime.InteropServices; 
  2. using System.Threading; 

在你的 Form 类里添加如下 DllImport 属性:

 

 
  1. [DllImport("user32.dll")] 
  2. static extern IntPtr FindWindow(IntPtr classname, string title); // extern method: FindWindow 
  3.  
  4. [DllImport("user32.dll")] 
  5. static extern void MoveWindow(IntPtr hwnd, int X, int Y, int nWidth, int nHeight, bool rePaint); // extern method: MoveWindow 
  6.  
  7. [DllImport("user32.dll")] 
  8. static extern bool GetWindowRect(IntPtr hwnd, out Rectangle rect); // extern method: GetWindowRect 

接下来就可以查找窗口并移动它:

 

 
  1. void FindAndMoveMsgBox(int x, int y, bool repaint, string title) 
  2. Thread thr = new Thread(() => // create a new thread 
  3. IntPtr msgBox = IntPtr.Zero; 
  4. // while there's no MessageBox, FindWindow returns IntPtr.Zero 
  5. while ((msgBox = FindWindow(IntPtr.Zero, title)) == IntPtr.Zero) ; 
  6. // after the while loop, msgBox is the handle of your MessageBox 
  7. Rectangle r = new Rectangle(); 
  8. GetWindowRect(msgBox, out r); // Gets the rectangle of the message box 
  9. MoveWindow(msgBox /* handle of the message box */, x , y, 
  10. r.Width - r.X /* width of originally message box */
  11. r.Height - r.Y /* height of originally message box */
  12. repaint /* if true, the message box repaints */); 
  13. }); 
  14. thr.Start(); /: starts the thread 

你要在 MessageBox.Show 之前调用这个方法,并确保 caption 参数不能为空,因为 title 参数必须等于 caption 参数。

使用方法:

 

 
  1. FindAndMoveMsgBox(0,0,true,"Title"); 
  2. MessageBox.Show("Message","Title"); 
   

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表