Im currentyl尝试使用以下代码行连接到RDP服务器:
this.axMsTscAxNotSafeForScripting1.Server = ((Computer)this.extendedTreeView1.SelectedNode).ipAdressen[0].ToString();
this.axMsTscAxNotSafeForScripting1.UserName = username;
IMsTscNonScriptable secured = (IMsTscNonScriptable)this.axMsTscAxNotSafeForScripting1.GetOcx();
secured.ClearTextPassword = password;
this.axMsTscAxNotSafeForScripting1.Connect();
但控件仍为空 - 没有错误,没有堆栈痕迹:( 我试图连接到Windows 8.1机器 - 连接端的操作系统相同。
我在这里做错了什么?