键盘不存在?

问题描述 投票:0回答:1

完整错误图像 我正在尝试使用键盘类。

这是我的代码

using System;
using System.Windows;     // shows this is unnecessary 

namespace HelloWorld
{
    public class Map
    {
        public string[][] layer { get; set; }
        public int[][] collision { get; set; }
    }

    class Program
    {
        static void Main(string[] args)
        {
            while (true)
            {
                Console.WriteLine(System.Windows.Input.Keyboard.IsKeyDown(ConsoleKey.Spacebar));
            }
        }
    }
}

错误截图

我该怎么办?

我尝试使用

Windows.Input
添加,但它只是显示 IDE0005 警告。

我想在我的游戏中使用

Keyboard.IsKeyDown
但是是的

c# keyboard
1个回答
0
投票

试试这个

添加PresentationCore.dll程序集作为参考。

添加 WindowsBase.dll 程序集作为参考。

© www.soinside.com 2019 - 2024. All rights reserved.