📜  C#|如何更改控制台的CursorSize

📅  最后修改于: 2021-05-30 00:49:59             🧑  作者: Mango

给定普通的C#控制台,任务是更改控制台的CursorSize。

方法:可以使用C#中System包的Console类中的CursorSize属性来完成此操作。它获取或设置字符单元格中光标的高度(以百分比为单位)。

程序1:获取CursorSize的值

// C# program to illustrate the
// Console.CursorSize Property
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
  
namespace GFG {
  
class Program {
  
    static void Main(string[] args)
    {
  
        // Get the CursorSize
        Console.WriteLine("Current CursorSize: {0}",
                                Console.CursorSize);
    }
}
}

输出:

程序2:设置CursorSize的值

// C# program to illustrate the
// Console.CursorSize Property
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
  
namespace GFG {
  
class Program {
  
    // Main Method
    static void Main(string[] args)
    {
  
        // Get the CursorSize
        Console.WriteLine("Current CursorSize: {0}",
                                Console.CursorSize);
  
        // Set the CursorSize
        Console.CursorSize = 100;
  
        // Get the CursorSize
        Console.Write("Current CursorSize: {0}",
                            Console.CursorSize);
    }
}
}

输出:

注意:请在两个图像中查看光标的宽度。