Dada la Consola normal en C#, la tarea es cambiar el Tamaño del Cursor de la Consola.
Enfoque: esto se puede hacer usando la propiedad CursorSize en la clase Console del paquete System en C#. Obtiene o establece la altura del cursor dentro de una celda de carácter en porcentaje.
Programa 1: Obtener el valor de 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); } } }
Producción:
Programa 2: Establecer el valor de 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); } } }
Producción:
Nota: vea el ancho del cursor en ambas imágenes.
Publicación traducida automáticamente
Artículo escrito por Kirti_Mangal y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA