当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C# Console.SetWindowSize()用法及代码示例


Console.SetWindowSize(Int32,Int32)方法用于将控制台窗口的高度和宽度更改为指定的值。

用法: public static void SetWindowSize (int width, int height);

参数:
width:控制台窗口的宽度,以列为单位。
height:控制台窗口的高度,以行为单位。


异常:

  • ArgumentOutOfRangeException:
    • 如果宽度或高度小于或等于零
    • 宽度加WindowLeft或高度加WindowTop大于或等于MaxValue
    • width或height大于当前屏幕分辨率和控制台字体的最大可能窗口宽度或高度。
  • IOException:如果发生I /O错误。

示例1:获取窗口的当前尺寸。

// C# program to get the current 
// window width and Height 
using System; 
  
namespace GFG { 
  
class Program { 
  
    static void Main(string[] args) 
    { 
        Console.WriteLine(Console.WindowWidth); 
        Console.WriteLine(Console.WindowHeight); 
    } 
} 
}

输出:

示例2:设置SetWindowSize的值

// C# program to illustrate the 
// Console.SetWindowSize Property 
using System; 
  
namespace GFG { 
  
class Program { 
  
    static void Main(string[] args) 
    { 
        // Passed 40, 40 to SetWindowSize to  
        // change window size to 40 by 40 
        Console.SetWindowSize(40, 40);. 
  
        // Printing the current dimensions 
        Console.WriteLine(Console.WindowWidth); 
        Console.WriteLine(Console.WindowHeight); 
    } 
} 
}

输出:

注意:在两个图像中,请参见窗口底部的水平滚动条。

参考:



相关用法


注:本文由纯净天空筛选整理自ShivamChauhan5大神的英文原创作品 Console.SetWindowSize() Method in C#。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。