源码网商城,靠谱的源码在线交易网站 我的订单 购物车 帮助

源码网商城

利用微软com组件mstscax.dll实现window7远程桌面功能

  • 时间:2020-05-30 04:45 编辑: 来源: 阅读:
  • 扫一扫,手机访问
摘要:利用微软com组件mstscax.dll实现window7远程桌面功能
[u]复制代码[/u] 代码如下:
namespace Client {     public partial class Login : Form     {         private string ip = null;         public Login()         {             InitializeComponent();         }         public Login(string IP)         {             InitializeComponent();             ip = IP;         }         private void Login_Load(object sender, EventArgs e)         {             this.FormClosing += Login_Closing;             this.Text = string.Format("登录到:{0}", ip);             // 获取主机显示器屏幕分辨率             Rectangle rect = Screen.PrimaryScreen.Bounds;             try             {                 rdp.Server = ip;                 rdp.AdvancedSettings2.RDPPort = 3389;                 rdp.Height = rect.Height;                 rdp.Width = rect.Width;                 //rdp.UserName = "client";                 //rdp.AdvancedSettings2.ClearTextPassword = "client";                 rdp.Connect();                 rdp.FullScreen = true;                 //this.FormBorderStyle = FormBorderStyle.None;                 rdp.FullScreenTitle = this.Text;             }             catch (System.Exception ex)             {                 MessageBox.Show(ex.Message);             }         }         private void Login_Closing(object sender, FormClosingEventArgs e)         {             if (MessageBox.Show("确认退出么?", "提示", MessageBoxButtons.YesNo,                 MessageBoxIcon.Question, MessageBoxDefaultButton.Button2) == DialogResult.No)                 e.Cancel = true;         }     } }
  • 全部评论(0)
联系客服
客服电话:
400-000-3129
微信版

扫一扫进微信版
返回顶部