当前位置 主页 > 服务器问题 > Linux/apache问题 >
复制代码 代码如下:
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);