SimpleWinFormClient - simple GUI SSH client
The simplest fully functional graphical SSH terminal - one drag and drop and one method call is all you need!
Everything you need to do to create your own fully functional graphical SSH terminal is this:
- Drag and drop the SshTerminalControl class into your Windows Forms control.
- Specify the server hostname.
- Specify the credentials.
- Call the SshTerminalControl's Connect method to start the SSH shell session.
Check out the Windows Forms Terminal Emulation control page for more information.
C#
// specify the connection values
sshTerminalControl.ServerName = "hostname";
// specify the credentials
sshTerminalControl.UserName = "username";
sshTerminalControl.UserPassword = "password";
// connect
sshTerminalControl.Connect();
VB.NET
' specify the connection values
sshTerminalControl.ServerName = "hostname"
' specify the credentials
sshTerminalControl.UserName = "username"
sshTerminalControl.UserPassword = "password"
' connect
sshTerminalControl.Connect()