我想在visual studio 2013的c#应用程序中更改消息框的位置。我发现了这篇文章:
http://www.codeproject.com/Tips/472294/Position-a-Windows-Forms-MessageBox-in-Csharp
它说“在你的Form类中,添加这些DllImport属性。”
这实际上需要我做什么?我去了我的System.Windows.Forms参考。如果那是我需要做的地方添加这个代码,我不知道它需要在哪里添加,因为有很多东西正在进行,我不知道。
答案 0 :(得分:4)
导入以下名称空格
using System.Runtime.InteropServices;
using System.Threading;
在课程级别编写以下代码(如果您想要重新评估这些方法的信息,请参阅pinvoke
[DllImport("user32.dll")]
static extern IntPtr FindWindow(IntPtr classname, string title);
[DllImport("user32.dll")]
static extern void MoveWindow(IntPtr hwnd, int X, int Y,int nWidth, int nHeight, bool rePaint);
[DllImport("user32.dll")]
static extern bool GetWindowRect(IntPtr hwnd, out Rectangle rect);
编写FindAndMoveMsgBox
方法并在任何地方拨打电话
这里我在Form1构造函数中调用了方法,下面是最终代码
using System;
using System.Drawing;
using System.Windows.Forms;
using System.Runtime.InteropServices;
using System.Threading;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
[DllImport("user32.dll")]
static extern IntPtr FindWindow(IntPtr classname, string title);
[DllImport("user32.dll")]
static extern void MoveWindow(IntPtr hwnd, int X, int Y,int nWidth, int nHeight, bool rePaint);
[DllImport("user32.dll")]
static extern bool GetWindowRect(IntPtr hwnd, out Rectangle rect);
public Form1()
{
InitializeComponent();
FindAndMoveMsgBox(0, 0, true, "Title");
MessageBox.Show("Message", "Title");
}
void FindAndMoveMsgBox(int x, int y, bool repaint, string title)
{
Thread thr = new Thread(() => // create a new thread
{
IntPtr msgBox = IntPtr.Zero;
// while there's no MessageBox, FindWindow returns IntPtr.Zero
while ((msgBox = FindWindow(IntPtr.Zero, title)) == IntPtr.Zero) ;
// after the while loop, msgBox is the handle of your MessageBox
Rectangle r = new Rectangle();
GetWindowRect(msgBox, out r); // Gets the rectangle of the message box
MoveWindow(msgBox /* handle of the message box */, x, y,
r.Width - r.X /* width of originally message box */,
r.Height - r.Y /* height of originally message box */,
repaint /* if true, the message box repaints */);
});
thr.Start(); // starts the thread
}
}
}
答案 1 :(得分:0)
(请参阅上面的回答 - 在我输入代码时发布:)) 什么' DLLImport'允许您从托管代码中调用非托管代码中的函数。 这称为平台调用服务(或PInvoke)
在使用PInvoke服务之前,我建议您熟悉PInvoke及其工作原理。 PInvoke非常棒,我在操作系统操作方面也大量使用它,例如您发布的链接。
日期,但仍然是一个很好的PInvoke tutoriual:http://msdn.microsoft.com/en-us/library/aa288468(v=vs.71).aspx
回答这个问题: 在Form.cs文件的顶部添加这些代码行(在类引用中)
public partial class MyForm : Form
{
[DllImport("user32.dll")]
static extern IntPtr FindWindow(IntPtr classname, string title); // extern method: FindWindow
[DllImport("user32.dll")]
static extern void MoveWindow(IntPtr hwnd, int X, int Y,
int nWidth, int nHeight, bool rePaint); // extern method: MoveWindow
[DllImport("user32.dll")]
static extern bool GetWindowRect
(IntPtr hwnd, out Rectangle rect); // extern method: GetWindowRect
//ETC