/// <summary> /// Constructor /// </summary> public SFTPToolbar() { SFTPCommand sftpCommand = new SFTPCommand(); SCPCommand scpCommand = new SCPCommand(); _toolbarElements = new IToolBarElement[] { new SFTPToolbarCommandButton(sftpCommand), new SCPToolbarCommandButton(scpCommand) }; _menuGroup = new PoderosaMenuGroupImpl( new IPoderosaMenu[] { sftpCommand, scpCommand }); }
/// <summary> /// Constructor /// </summary> public SCPToolbarCommandButton(SCPCommand command) : base(command, Resources.IconSCP16x16) { }