我试试这个教程
http://elegantcode.com/2010/02/20/silverlight-4-com-interop-and-the-cool-stuff-you-can-do-with-it/
我需要打开记事本并将文本发送到。我使用这段代码:
using (dynamic shell = AutomationFactory.CreateObject("WScript.Shell"))
{
shell.Run(@"C:\windows\notepad.exe"); //you can open anything
shell.SendKeys(txtTextToSend.Text);
}
当我开始应用程序时,记事本已经出现,但里面没有文字。
我有什么错。我的系统是W7 64位。谢谢