mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-17 22:11:48 +08:00
rename dll to ExternalConnectors.dll for possible other future implementations refactor namespaces in dll
17 lines
325 B
C#
17 lines
325 B
C#
namespace ExternalConnectors.AWS
|
|
{
|
|
public partial class AWSConnectionForm : Form
|
|
{
|
|
public AWSConnectionForm()
|
|
{
|
|
InitializeComponent();
|
|
|
|
}
|
|
|
|
private void AWSConnectionForm_Activated(object sender, EventArgs e)
|
|
{
|
|
tbAccesKeyID.Focus();
|
|
}
|
|
}
|
|
}
|