相对于屏幕重新定位控制台 window
Reposition console window relative to screen
我正在开发 C# 控制台应用程序,我使用 Console.WindowHeight 增加了 window 的高度,但现在 window 的底部在该应用程序首次打开。
有没有办法在控制台应用程序中设置控制台 window 相对于屏幕的位置?我查看了 Console.SetWindowPosition,但这只会影响控制台 window 相对于 'screen buffer,' 的位置,这似乎不是我想要的。
感谢您的帮助!
这里有一个解决方案,它使用 window 句柄和导入的 SetWindowPos()
本机函数来实现您正在寻找的内容:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleWindowPos
{
static class Imports
{
public static IntPtr HWND_BOTTOM = (IntPtr)1;
// public static IntPtr HWND_NOTOPMOST = (IntPtr)-2;
public static IntPtr HWND_TOP = (IntPtr)0;
// public static IntPtr HWND_TOPMOST = (IntPtr)-1;
public static uint SWP_NOSIZE = 1;
public static uint SWP_NOZORDER = 4;
[DllImport("user32.dll", EntryPoint = "SetWindowPos")]
public static extern IntPtr SetWindowPos(IntPtr hWnd, int hWndInsertAfter, int x, int Y, int cx, int cy, uint wFlags);
}
class Program
{
static void Main(string[] args)
{
var consoleWnd = System.Diagnostics.Process.GetCurrentProcess().MainWindowHandle;
Imports.SetWindowPos(consoleWnd, 0, 0, 0, 0, 0, Imports.SWP_NOSIZE | Imports.SWP_NOZORDER);
System.Console.ReadLine();
}
}
}
代码将控制台 window 移动到屏幕的左上角,既不改变 z 顺序也不改变 window 的 width/height。
您可以使用 Console.SetWindowPosition(int left, int top)
,它适用于 .NET Framework 和 .NET 5.0。
我正在开发 C# 控制台应用程序,我使用 Console.WindowHeight 增加了 window 的高度,但现在 window 的底部在该应用程序首次打开。
有没有办法在控制台应用程序中设置控制台 window 相对于屏幕的位置?我查看了 Console.SetWindowPosition,但这只会影响控制台 window 相对于 'screen buffer,' 的位置,这似乎不是我想要的。
感谢您的帮助!
这里有一个解决方案,它使用 window 句柄和导入的 SetWindowPos()
本机函数来实现您正在寻找的内容:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleWindowPos
{
static class Imports
{
public static IntPtr HWND_BOTTOM = (IntPtr)1;
// public static IntPtr HWND_NOTOPMOST = (IntPtr)-2;
public static IntPtr HWND_TOP = (IntPtr)0;
// public static IntPtr HWND_TOPMOST = (IntPtr)-1;
public static uint SWP_NOSIZE = 1;
public static uint SWP_NOZORDER = 4;
[DllImport("user32.dll", EntryPoint = "SetWindowPos")]
public static extern IntPtr SetWindowPos(IntPtr hWnd, int hWndInsertAfter, int x, int Y, int cx, int cy, uint wFlags);
}
class Program
{
static void Main(string[] args)
{
var consoleWnd = System.Diagnostics.Process.GetCurrentProcess().MainWindowHandle;
Imports.SetWindowPos(consoleWnd, 0, 0, 0, 0, 0, Imports.SWP_NOSIZE | Imports.SWP_NOZORDER);
System.Console.ReadLine();
}
}
}
代码将控制台 window 移动到屏幕的左上角,既不改变 z 顺序也不改变 window 的 width/height。
您可以使用 Console.SetWindowPosition(int left, int top)
,它适用于 .NET Framework 和 .NET 5.0。