111,126
社区成员
发帖
与我相关
我的任务
分享
rdpClient = new AxMSTSCLib.AxMsRdpClient();
rdpClient.Dock = DockStyle.Fill;
rdpClient.Width = Screen.PrimaryScreen.Bounds.Width;//控件宽度
rdpClient.Height = Screen.PrimaryScreen.Bounds.Height;//控件宽度
this.Controls.Add(rdpClient);
rdpClient.Server = this.StrIP;//服务器地址
rdpClient.UserName = this.StrName;
rdpClient.AdvancedSettings2.RDPPort = 3389; //端口
rdpClient.AdvancedSettings2.ClearTextPassword = this.StrPwd;//密码
rdpClient.ColorDepth = 16;//颜色位数
rdpClient.FullScreen = true;//是否全屏
rdpClient.Connect();