📌  相关文章
📜  C#|通过控制台检查Num Lock是打开还是关闭

📅  最后修改于: 2021-05-29 20:52:57             🧑  作者: Mango

在使用C#的普通控制台的情况下,任务是通过控制台检查NUM LOCK是打开还是关闭。

方法:可以使用C#中System包的Console类中的NumberLock属性来完成此操作。此属性获取一个值,该值指示是打开还是关闭了NUM LOCK键盘开关。

程序1:当NUM LOCK处于打开状态时

// C# program to illustrate the
// Console.NumberLock 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)
    {
  
        // Check if NUM LOCK is on or off
        Console.WriteLine("Is NUM LOCK on: {0}",
                          Console.NumberLock);
    }
}
}

输出:

程序2:当数字锁定关闭时

// C# program to illustrate the
// Console.NumberLock 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)
    {
  
        // Check if NUM LOCK is on or off
        Console.WriteLine("Is NUM LOCK on: {0}",
                          Console.NumberLock);
    }
}
}

输出: