提问人:Arcadio R 提问时间:12/14/2016 更新时间:12/14/2016 访问量:282
将窗口还原到屏幕上的特定位置 C#(控制台应用程序)
restore window to specific locaiton on screen c# (console application)
问:
我想知道如何将应用程序窗口恢复到屏幕上的特定位置。
我确实设法编写了一些代码,但不知何故,我确实有一种感觉,必须有一种更简单、更有效的方法来编程......因为我当前的版本是先恢复窗口,然后将其移动到所需的位置。我想恢复它,而不是被迫在事后移动它。
我的代码:
public void Send()
{
if (Process.GetProcessesByName("report").Any())
{
Process proc = Process.GetProcessesByName("report").First();
if (proc != null)
{
IntPtr pointer = proc.MainWindowHandle;
SetForegroundWindow(pointer);
SendMessage(pointer, WM_SYSCOMMAND, SC_RESTORE, 0);
Program.MoveWindow(pointer, 0, 0, 100, 100, true);
}
}
// do something
}
当然,紧随其后的是:
[DllImport("user32.dll")]
static extern int SetForegroundWindow(IntPtr hWnd);
[DllImport("user32.dll")]
internal static extern bool SendMessage(IntPtr hWnd, Int32 msg, Int32 wParam, Int32 lParam);
static Int32 WM_SYSCOMMAND = 0x0112;
static Int32 SC_RESTORE = 0xF120;
[DllImport("user32.dll", SetLastError = true)]
internal static extern bool MoveWindow(IntPtr hWnd, int X, int Y, int nWidth, int nHeight, bool bRepaint);
我将不胜感激进一步的解决方案和解释。
答: 暂无答案
评论
I do have a feeling that there must be and easier and more efficient way to do it
- 不是真的,不是。SetWindowPos
的单个调用。x、y、width 和 height 参数与 相同,但该参数允许您还原窗口(或执行所需的任何其他操作)。在这里使用是骇人听闻的,而且是错误的。SendMessage
MoveWindow
MoveWindow
uFlags
SendMessage