我在那里尝试了很多运行 RDC windows 应用程序,我试图捕捉细节。
喜欢---->连接Myremotedesktop ---->在rdc中运行windows应用程序并输入值以获取详细信息(例如,如果我输入rollnumber地址详细信息将出现) ---->捕获详细信息数据并将其存储在我的本地桌面。
有没有办法使用 c# 代码自动化这个过程?
我可以连接远程桌面。我尝试了 UIAutomation 和以下代码在本地桌面上运行良好:
System.Threading.Thread.Sleep(500);
AutomationElement rootElement = AutomationElement.RootElement;
Condition appCondition = new PropertyCondition(AutomationElement.NameProperty, "Untitled - Notepad");
Condition documentCondition = new PropertyCondition(AutomationElement.LocalizedControlTypeProperty, "document");
AutomationElement documentElement = rootElement.FindFirst(TreeScope.Subtree, documentCondition);
documentElement.SetFocus();
SendKeys.SendWait("This is a test of the emergency broadcast system.")
如何在远程桌面上做同样的事情?