Computer >> Máy Tính >  >> Lập trình >> C#

Cách thay đổi khả năng hiển thị của Con trỏ của Bảng điều khiển trong C #

Để thay đổi khả năng hiển thị của Con trỏ, hãy sử dụng thuộc tính Console.CursorVosystem.

Ví dụ

Hãy để chúng tôi xem một ví dụ -

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
class Demo {
   public static void Main (string[] args) {
      Console.BackgroundColor = ConsoleColor. Black;
      Console.WriteLine("Background color changed = "+Console.BackgroundColor);
      Console.ForegroundColor = ConsoleColor.White;
      Console.WriteLine("\nForeground color changed = "+Console.ForegroundColor);
      Console.InputEncoding = Encoding.ASCII;
      Console.WriteLine("Input Encoding Scheme = "+Console.InputEncoding);
      Console.OutputEncoding = Encoding.ASCII;
      Console.WriteLine("Output Encoding Scheme = "+Console.OutputEncoding);
      Console.CursorVisible = false;
      Console.Write("\nCursor is Visible? "+ Console.CursorVisible);
   }
}

Đầu ra

Điều này sẽ tạo ra kết quả sau -

Cách thay đổi khả năng hiển thị của Con trỏ của Bảng điều khiển trong C #