2012-12-14 70 views
1

我想發出一個簡單的輸入與該命令鍵:不能在WPF應用程序C#VS2010使用的SendKeys

System.Windows.Forms.SendKeys.Send("{ENTER}"); 

但是,我cam't得到System.Windows.Forms的......「表單'在命名空間中不存在?該應用程序在VS2010中開發,我相信它是WPF,MainWindow.xaml.cs。

我該如何解決它?

基本上,我的應用程序中的按鈕將啓動一個exe,然後我想發送一個'ENTER'命令。

感謝,

+1

加入'System.Windows.Forms' –

+0

系統參考.Windows.Forms不存在 – okysabeni

+0

類型或命名空間名稱'Forms'在命名空間'System.Windows'中不存在(您是否缺少程序集引用?) – okysabeni

回答

4

你需要有對System.Windows.Forms.dll的引用 - WPF應用程序不引用,默認情況下

+0

System.Windows.Forms.SendKeys.SendWait(「{ENTER}」);請參閱http://stackoverflow.com/a/11404560/3090544 – MarkusEgle