手机
当前位置:查字典教程网 >编程开发 >C#教程 >利用微软com组件mstscax.dll实现window7远程桌面功能
利用微软com组件mstscax.dll实现window7远程桌面功能
摘要:复制代码代码如下:namespaceClient{publicpartialclassLogin:Form{privatestringip=...

复制代码 代码如下:

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;

}

}

}

【利用微软com组件mstscax.dll实现window7远程桌面功能】相关文章:

使用Http Head方法获取文件长度的实现方法详解

C#利用com操作excel释放进程的解决方法

c# winform读取xml文件创建菜单的代码

C#线程池用法详细介绍

基于一个应用程序多线程误用的分析详解

c#用Treeview实现FolderBrowerDialog 和动态获取系统图标(运用了Win32 dll类库)

深入反射生成数组的详解

c# 引用类型与值类型的区别详解

利用Aspose.Word控件实现Word文档的操作

C#用Activex实现Web客户端读取RFID功能的代码

精品推荐
分类导航