當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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#。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。