WindowWidth 属性获取或设置控制台窗口的宽度。
声明一个变量。
int width;
现在,获取当前窗口的宽度。
width = Console.WindowWidth;
以下是完整示例。
示例
using System;
using System.Numerics;
using System.Globalization;
class Demo {
static void Main() {
int width;
int height;
width = Console.WindowWidth;
height = Console.WindowHeight;
Console.WriteLine("Current window width = "+width);
Console.WriteLine("Current window height = "+height);
}
}
输出
Current window width = 0 Current window height = 0
相关用法
- C# Console.WindowLeft用法及代码示例
- C# Console.Clear用法及代码示例
- C# Console.SetOut()用法及代码示例
- C# Console.SetIn()用法及代码示例
- C# Console.SetWindowPosition()用法及代码示例
- C# Console.SetBufferSize()用法及代码示例
- C# Console.TreatControlCAsInput用法及代码示例
- C# Console.SetWindowSize()用法及代码示例
- C# Console.ReadKey()用法及代码示例
- C# Console.MoveBufferArea()用法及代码示例
- C# Console.MoveBufferArea用法及代码示例
- C# Console.SetCursorPosition()用法及代码示例
- C# Console.ReadLine()用法及代码示例
- C# Console.OpenStandardInput用法及代码示例
- C# Console.OpenStandardError用法及代码示例
- C# Console.Read()用法及代码示例
- C# Console.SetError()用法及代码示例
- C# Console.ResetColor()用法及代码示例
注:本文由纯净天空筛选整理自Karthikeya Boyini大神的英文原创作品 C# Console.WindowWidth Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。