即時通訊工作在一個簡單的控制檯應用程序,只是在屏幕上顯示的東西。無法訪問System.Windows.Input下的鍵盤類
我進入System.Windows.Input類的問題,我只是不能得到他們。
這裏的代碼我嘗試:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Input;
namespace FUAndLOLInstall.LookForAndActivateFile
{
class KeyboardHandler
{
public void usKeyboard()
{
System.Windows.Input.Keyboard //its like the class Keyboard not exsit.
}
}
}
一些信息:使用librery TestStack.White做一些minpultion上windowm,我從我的應用程序啓動 IM。
TestStack.White本身有一個鍵盤類(White.Core.InputDevices.Keyboard
),但是這個類可以阻止我認識System.Windows.Input.Keyboard
類嗎?
您正在使用完整路徑,因此兩個鍵盤類之間不會發生命名空間衝突。你可以用你的使用語句編輯嗎?您可能會錯過參考。 – evanmcdonnal
也許一個愚蠢的問題,但你已經引用了PresentationCore.dll,對吧? –
@Mario nope,我什至不知道該DLL。 – samy