Dada la consola normal en C#, la tarea es cambiar la ventana izquierda de la consola.
Enfoque: esto se puede hacer usando la propiedad WindowLeft en la clase Console del paquete System en C#. WindowLeft Obtiene o establece la posición más a la izquierda del área de la ventana de la consola en relación con el búfer de la pantalla.
Programa 1: Obtener el valor de WindowLeft
// C# program to illustrate the // Console.WindowLeft 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 WindowLeft Console.WriteLine("Current WindowLeft: {0}", Console.WindowLeft); } } }
Producción:
Programa 2: Configuración del valor de WindowLeft
// C# program to illustrate the // Console.WindowLeft 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 WindowWidth Console.WriteLine("Current WindowLeft: {0}", Console.WindowLeft); // Set the WindowWidth Console.BufferWidth = 100; Console.WindowLeft = 10; // Get the WindowWidth Console.Write("Current WindowLeft: {0}", Console.WindowLeft); } } }
Producción:
Nota: vea la barra de desplazamiento horizontal en la parte inferior de la ventana 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