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

📅  最后修改于: 2021-05-29 16:49:41             🧑  作者: Mango

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

方法:可以使用C#中System包的Console类中的WindowLeft属性来完成此操作。 WindowLeft获取或设置控制台窗口区域相对于屏幕缓冲区的最左侧位置。

程序1:获取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);
    }
}
}

输出:

程序2:设置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);
    }
}
}

输出:

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