Windows CMD/命令提示符的尺寸是多少?
我知道命令提示符默认情况下为 80 个字符,向下 300 个字符。困难在于:我正在尝试创建一个与命令提示符窗口大小完全相同的 C# WinForms 窗口。我应该使用什么宽度和高度才能使窗口大小相同?
编辑:我正在寻找的是使用 C# WinForms 窗口重新创建命令提示符窗口的大小。我应该使用什么宽度/高度?
I know that the Command Prompt is 80 characters across and 300 characters down by default. Here's the difficulty: I'm trying to create a C# WinForms window that is the exact same size as the command prompt window. What width and height should I use to get the window to be the same size?
EDIT: All I'm looking for is to recreate the size of the command prompt window with a C# WinForms window. What width/height should I use?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
默认窗口大小应为 80x25。默认缓冲区大小为 80x300。
Default window size should be 80x25. Default buffer size is 80x300.
如果您有控制台进程,则可以调用 GetConsoleWindow,然后调用 GetWindowRect。
If you have a console process you can call GetConsoleWindow and then GetWindowRect.
您需要运行cmd,截取屏幕截图,将图像粘贴到图像编辑器中,剪切cmd窗口,将其粘贴到自己的图像中,然后查看新图像的大小。这将为您提供 x 和 y 长度(以像素为单位)。
You need to run cmd, take a screenshot, paste the image into an image editor, cut the cmd window, paste it into its own image and then view the size of the new image. That will give you the x and y lengths in pixels.
默认命令提示符尺寸为 677、343。高度为 677,宽度为 343,希望这会有所帮助。
The default command prompt dimensions are 677, 343. The height being 677 and the width being 343, hope this helps.