Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ConnectionDialog.cs « NFreeRDP - github.com/FreeRDP/FreeRDP-Sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 79dcc9bc03d18ee6acd1724f924ad4718d4c01d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace NFreeRDP
{
	public partial class ConnectionDialog : Form
	{
		public ConnectionDialog()
		{
			InitializeComponent();
		}

		public ConnectionSettings GetConnectionSettings()
		{
			ConnectionSettings settings = new ConnectionSettings();

			settings.port = 3389;
			settings.hostname = txtHostname.Text;
			settings.username = txtUsername.Text;
			settings.domain = "";
			settings.password = txtPassword.Text;

			return settings;
		}
	}
}